summary refs log tree commit diff stats
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game.h b/src/game.h index 3822700..ec667c8 100644 --- a/src/game.h +++ b/src/game.h
@@ -8,12 +8,12 @@
8class Game { 8class Game {
9 public: 9 public:
10 Game(GLFWwindow* window); 10 Game(GLFWwindow* window);
11 11
12 void execute(); 12 void execute();
13 EntityManager& getEntityManager(); 13 EntityManager& getEntityManager();
14 14
15 friend void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods); 15 friend void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods);
16 16
17 private: 17 private:
18 EntityManager entityManager; 18 EntityManager entityManager;
19 SystemManager systemManager; 19 SystemManager systemManager;