entity_spell_system/profile_manager/input/input_profile.h

24 lines
296 B
C
Raw Normal View History

2019-10-14 15:16:59 +02:00
#ifndef INPUT_PROFILE_H
#define INPUT_PROFILE_H
#include "core/reference.h"
#include "core/ustring.h"
class InputProfile : public Reference {
GDCLASS(InputProfile, Reference);
public:
InputProfile() {}
protected:
static void _bind_methods() {}
private:
int placeholder;
};
#endif