summary refs log tree commit diff stats
path: root/src/systems/animating.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/animating.h')
-rw-r--r--src/systems/animating.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/systems/animating.h b/src/systems/animating.h new file mode 100644 index 0000000..d6a89a5 --- /dev/null +++ b/src/systems/animating.h
@@ -0,0 +1,23 @@
1#ifndef ANIMATING_H_5BBF0094
2#define ANIMATING_H_5BBF0094
3
4#include "system.h"
5#include <string>
6#include "renderer.h"
7
8class AnimatingSystem : public System {
9public:
10
11 AnimatingSystem(Game& game) : System(game)
12 {
13 }
14
15 void tick(double dt);
16
17 void render(Texture& texture);
18
19 void startAnimation(id_type entity, std::string animation);
20
21};
22
23#endif /* end of include guard: ANIMATING_H_5BBF0094 */