summary refs log tree commit diff stats
path: root/src/systems/playing.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-05-17 15:55:37 -0400
committerGitHub <noreply@github.com>2018-05-17 15:55:37 -0400
commit90aadf3844386824140a20d7fbb847bc16009a94 (patch)
tree6f83fce90e71abb22b1a8f3e09c79963b2a34d5d /src/systems/playing.h
parentbc63fa57ced1c7329f7fdcfd168eaf7e290158bc (diff)
parent86f0106d0523825549f1e74b835688c78a10cf6c (diff)
downloadtherapy-90aadf3844386824140a20d7fbb847bc16009a94.tar.gz
therapy-90aadf3844386824140a20d7fbb847bc16009a94.tar.bz2
therapy-90aadf3844386824140a20d7fbb847bc16009a94.zip
Merge pull request #7 from hatkirby/es-rewrite
The ECS rewrite exceeds the original branch in functionality, so it is time to merge it in.
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 */