summary refs log tree commit diff stats
path: root/src/systems/rendering.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/rendering.h')
-rw-r--r--src/systems/rendering.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/systems/rendering.h b/src/systems/rendering.h index 80ea79e..9b6e27e 100644 --- a/src/systems/rendering.h +++ b/src/systems/rendering.h
@@ -7,7 +7,10 @@
7 7
8class RenderingSystem : public System { 8class RenderingSystem : public System {
9 public: 9 public:
10 void tick(EntityManager& manager, float dt); 10 RenderingSystem(Game& game)
11 : System(game) {}
12
13 void tick(double dt);
11 14
12 private: 15 private:
13 Texture texture {GAME_WIDTH, GAME_HEIGHT}; 16 Texture texture {GAME_WIDTH, GAME_HEIGHT};