summary refs log tree commit diff stats
path: root/src/systems/rendering.h
blob: a53ee6431854ca9528e5f15fc820050054138be7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef RENDERING_H_76ABC02A
#define RENDERING_H_76ABC02A

#include "system.h"
#include "renderer.h"
#include "consts.h"

class RenderingSystem : public System {
public:

  RenderingSystem(Game& game) : System(game)
  {
  }

  void tick(double dt);

private:

  Texture texture_ {GAME_WIDTH, GAME_HEIGHT};
};

#endif /* end of include guard: RENDERING_H_76ABC02A */