diff options
Diffstat (limited to 'src/core/player.h')
-rw-r--r-- | src/core/player.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/player.h b/src/core/player.h index 490515d..11711b5 100644 --- a/src/core/player.h +++ b/src/core/player.h @@ -25,6 +25,9 @@ class Player public: Player(); ~Player(); + + /// clear all the data + void clear(); /// name of the player inline std::string const &name() const { return player_name; } @@ -38,15 +41,11 @@ public: /// name of the player std::string player_name; - /// dirty state bool dirty; /// the entity the Player is currently controling EntityControlable *control; - - /// the local player - static Player local; }; } |