diff options
Diffstat (limited to 'src/components/playable.h')
| -rw-r--r-- | src/components/playable.h | 15 |
1 files changed, 15 insertions, 0 deletions
| diff --git a/src/components/playable.h b/src/components/playable.h new file mode 100644 index 0000000..a6e71b0 --- /dev/null +++ b/src/components/playable.h | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | #ifndef PLAYABLE_H_DDC566C3 | ||
| 2 | #define PLAYABLE_H_DDC566C3 | ||
| 3 | |||
| 4 | #include "component.h" | ||
| 5 | |||
| 6 | class PlayableComponent : public Component { | ||
| 7 | public: | ||
| 8 | |||
| 9 | bool changingMap = false; | ||
| 10 | int newMapId = -1; | ||
| 11 | double newMapX = 0; | ||
| 12 | double newMapY = 0; | ||
| 13 | }; | ||
| 14 | |||
| 15 | #endif /* end of include guard: PLAYABLE_H_DDC566C3 */ | ||
