diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-17 08:38:51 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-17 08:38:51 -0500 |
commit | fcf3e396c57b285b621624f63f9acd6515c58ef9 (patch) | |
tree | 03969def5fbea60e9003e56c94ccca1492eebe26 /include/entities.h | |
parent | 20b29fccb6da62d5a07a02477fabac3a80d350dd (diff) |
cutscenes, arenas
Diffstat (limited to 'include/entities.h')
-rw-r--r-- | include/entities.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/entities.h b/include/entities.h index b590c8d..c2de1b1 100644 --- a/include/entities.h +++ b/include/entities.h @@ -30,7 +30,8 @@ enum GENDER{ enum MOB_SUB { MS_RABBIT = 1, - MS_BIRD + MS_BIRD, + MS_TRIGGER }; class Entity{ @@ -102,8 +103,10 @@ public: class Mob : public Entity{ public: - float init_y; + double init_y; + void (*hey)(); Mob(int); + Mob(int,unsigned int); void wander(int); }; |