diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-12 09:27:43 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-12 09:27:43 -0500 |
commit | 620311fb15953984c2fe37917d678f9b3aaa00b6 (patch) | |
tree | 98cf46c253228495245020e881a6e2edb6cb2644 /include/window.hpp | |
parent | b018bfd5d69a51b352cc87cf92136a0b20712845 (diff) |
fixes, main cleanup
Diffstat (limited to 'include/window.hpp')
-rw-r--r-- | include/window.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/window.hpp b/include/window.hpp index 5cf05ea..d53a2bf 100644 --- a/include/window.hpp +++ b/include/window.hpp @@ -36,7 +36,9 @@ public: void die(void); void configure(entityx::EventManager &ev); - void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; + void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override + { (void)en; (void)ev; (void)dt; } + void render(void); void receive(const WindowResizeEvent&); void receive(const ScreenshotEvent&); }; |