summary refs log tree commit diff stats
path: root/src/entity.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entity.h')
-rw-r--r--src/entity.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/entity.h b/src/entity.h index b606b43..a69c612 100644 --- a/src/entity.h +++ b/src/entity.h
@@ -21,6 +21,7 @@ public:
21 vec2s destPos; 21 vec2s destPos;
22 double movementTween = 0.0; 22 double movementTween = 0.0;
23 double speed = 0.0; // Tiles per second 23 double speed = 0.0; // Tiles per second
24 Direction moveDir = Direction::none;
24 25
25 // Player 26 // Player
26 bool controllable = false; 27 bool controllable = false;
@@ -32,6 +33,8 @@ public:
32 // Temp 33 // Temp
33 int colorVal = 25; 34 int colorVal = 25;
34 35
36 bool scheduled = false;
37
35}; 38};
36 39
37#endif /* end of include guard: ENTITY_H_0D6CB29A */ 40#endif /* end of include guard: ENTITY_H_0D6CB29A */