X-Git-Url: https://jfr.im/git/irc/gameservirc.git/blobdiff_plain/2bf5063e2e7ffafd210396652ed7b98ad438b343..3662210ff8fbf469ecfc45ce9e1734ddb781e6fd:/gameserv/player.h?ds=sidebyside diff --git a/gameserv/player.h b/gameserv/player.h index 9e8b2da..c4d9bf7 100644 --- a/gameserv/player.h +++ b/gameserv/player.h @@ -4,6 +4,7 @@ #include #include #include "aClient.h" +#include "pouch.h" typedef struct monster_ Monster; @@ -40,11 +41,13 @@ public: int forest_fights; // Amount of forest fights left today int player_fights; // Amount of player<->player fights for today char *password; // Player's encrypted password + Pouch inventory; // This contains their potions, etc. aClient *user; // Pointer to the aClient this player is from Monster *fight; // Pointer to the monster the player is currently fighting Monster *master; // Pointer to the master the player is currently fighting aClient *battle; // Pointer to the player this player is currently fighting + private: long int flags; // Player's current flags };