diff options
Diffstat (limited to 'source/30-game/Player.hpp')
-rw-r--r-- | source/30-game/Player.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/30-game/Player.hpp b/source/30-game/Player.hpp index d003a25..5a6bab7 100644 --- a/source/30-game/Player.hpp +++ b/source/30-game/Player.hpp @@ -2,9 +2,11 @@ #include "GameObject.hpp" #include "Material.hpp" -#include "RcPtr.hpp" #include "Sprite.hpp" +#include <MacrosCodegen.hpp> +#include <RcPtr.hpp> + #define GLFW_INCLUDE_NONE #include <GLFW/glfw3.h> @@ -27,6 +29,8 @@ struct PlayerKeyBinds { }; class Player : public GameObject { + BRUSSEL_CLASS() + public: std::vector<GLFWkeyboard*> boundKeyboards; PlayerKeyBinds keybinds; |