diff options
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/being.h b/src/being.h index 3a68e0ac..beeac528 100644 --- a/src/being.h +++ b/src/being.h @@ -53,6 +53,17 @@ class Being MONSTER }; + enum Action { + STAND = 0, + WALK = 1, + ATTACK = 5, + BOW_ATTACK = 9, + MONSTER_DEAD = 9, + SIT = 13, + HIT = 14, + DEAD = 15, + }; + unsigned short job; /**< Job (player job, npc, monster, ) */ unsigned short x, y; /**< Tile coordinates */ unsigned char direction; /**< Facing direction */ |