aboutsummaryrefslogtreecommitdiffstats
path: root/include/window.hpp
diff options
context:
space:
mode:
authorAndy <drumsetmonkey@gmail.com>2017-01-19 09:21:12 -0500
committerAndy <drumsetmonkey@gmail.com>2017-01-19 09:21:12 -0500
commit213d9ccfbb4752d4c62d6b7e6b3f9172cdf1bccc (patch)
tree7872c6f30c8adf048a7863a33d837299c7fb0771 /include/window.hpp
parent19a32074595a4a2797eaeb978f8bd302f736f6a6 (diff)
parent8452b199d28bea53bf2c5e3b3d604064000fc73d (diff)
Limb animation actually works
Diffstat (limited to 'include/window.hpp')
-rw-r--r--include/window.hpp4
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&);
};