mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
29 lines
506 B
C
29 lines
506 B
C
|
#ifndef INPUT_PROFILE_MODIFIER_ENTRY_H
|
||
|
#define INPUT_PROFILE_MODIFIER_ENTRY_H
|
||
|
|
||
|
#include "core/reference.h"
|
||
|
#include "core/ustring.h"
|
||
|
|
||
|
class InputProfileModifierEntry : public Reference {
|
||
|
GDCLASS(InputProfileModifierEntry, Reference);
|
||
|
|
||
|
public:
|
||
|
String get_action();
|
||
|
void set_action(String value);
|
||
|
|
||
|
String get_translate_to();
|
||
|
void set_translate_to(String value);
|
||
|
|
||
|
InputProfileModifierEntry();
|
||
|
|
||
|
protected:
|
||
|
static void _bind_methods();
|
||
|
|
||
|
private:
|
||
|
String _action;
|
||
|
String _translate_to;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|