mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
24 lines
296 B
C++
24 lines
296 B
C++
#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
|