diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-20 08:49:54 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-20 08:49:54 -0500 |
commit | cc4cd76409894615887e0b39d7db5b722138a613 (patch) | |
tree | db2802e34ba553bf121a7e59cb803d1c0c196e6d /include/entities.h | |
parent | 0a30bd1b2e2f02b6f34225d8976f645c99b53b7e (diff) | |
parent | 5598e4d1f52224f2d075dc318868e284b2f20a78 (diff) |
Started inv ui, new item system
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 fe316ad..403c3c5 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); }; |