summary refs log tree commit diff stats
path: root/src/components/playable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/playable.h')
-rw-r--r--src/components/playable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/playable.h b/src/components/playable.h index 94d4326..b8af0f2 100644 --- a/src/components/playable.h +++ b/src/components/playable.h
@@ -3,6 +3,7 @@
3 3
4#include "component.h" 4#include "component.h"
5#include "entity_manager.h" 5#include "entity_manager.h"
6#include "vector.h"
6 7
7class PlayableComponent : public Component { 8class PlayableComponent : public Component {
8public: 9public:
@@ -24,8 +25,7 @@ public:
24 * @managed_by PlayingSystem 25 * @managed_by PlayingSystem
25 */ 26 */
26 size_t checkpointMapId; 27 size_t checkpointMapId;
27 double checkpointX; 28 vec2d checkpointPos;
28 double checkpointY;
29 29
30}; 30};
31 31