diff options
Diffstat (limited to 'src/monster.h')
-rw-r--r-- | src/monster.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/monster.h b/src/monster.h index 6fb82c7f..9bb8e3b9 100644 --- a/src/monster.h +++ b/src/monster.h @@ -30,7 +30,7 @@ class Text; class Monster : public Being { public: - Monster(int id, int job, Map *map); + Monster(int id, int subtype, Map *map); virtual void logic(); @@ -38,6 +38,8 @@ class Monster : public Being virtual Type getType() const { return MONSTER; } + virtual void setSubtype(Uint16 subtype); + virtual TargetCursorSize getTargetCursorSize() const; |