summary refs log tree commit diff stats
path: root/src/systems/playing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/playing.h')
-rw-r--r--src/systems/playing.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/systems/playing.h b/src/systems/playing.h new file mode 100644 index 0000000..31f79ab --- /dev/null +++ b/src/systems/playing.h
@@ -0,0 +1,25 @@
1#ifndef PLAYING_H_70A54F7D
2#define PLAYING_H_70A54F7D
3
4#include "system.h"
5#include "vector.h"
6
7class PlayingSystem : public System {
8public:
9
10 PlayingSystem(Game& game) : System(game)
11 {
12 }
13
14 void initPlayer();
15
16 void changeMap(
17 id_type player,
18 size_t mapId,
19 vec2d warpPos);
20
21 void die(id_type player);
22
23};
24
25#endif /* end of include guard: PLAYING_H_70A54F7D */