diff options
Diffstat (limited to 'scene/gui/shortcut.h')
-rw-r--r-- | scene/gui/shortcut.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/scene/gui/shortcut.h b/scene/gui/shortcut.h index 59d3245db5..0d7809e5cf 100644 --- a/scene/gui/shortcut.h +++ b/scene/gui/shortcut.h @@ -31,12 +31,11 @@ #ifndef SHORTCUT_H #define SHORTCUT_H -#include "core/os/input_event.h" +#include "core/input/input_event.h" #include "core/resource.h" -class ShortCut : public Resource { - - GDCLASS(ShortCut, Resource); +class Shortcut : public Resource { + GDCLASS(Shortcut, Resource); Ref<InputEvent> shortcut; @@ -51,7 +50,7 @@ public: String get_as_text() const; - ShortCut(); + Shortcut(); }; #endif // SHORTCUT_H |