diff options
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/player.h b/src/player.h index 670f6d84..e75870a0 100644 --- a/src/player.h +++ b/src/player.h @@ -47,7 +47,7 @@ class Player : public Being /** * Constructor. */ - Player(int id, int job, Map *map, bool isNPC = false); + Player(int id, int subtype, Map *map, bool isNPC = false); ~Player(); @@ -55,6 +55,8 @@ class Player : public Being virtual Type getType() const { return PLAYER; } + virtual void setSubtype(Uint16 subtype); + /** * Sets the gender of this being. */ |