// Header File for the Player Class #include #include using namespace std; class Player { private: int fight = 10, flee = 10, talk = 10, health = 100; string playerName; public: // Get Functions int getFight() { return fight; } int getFlee() { return flee; } int getTalk() { return talk; } int getHealth() { return health; } string getPlayerName() { return playerName; } // Set Functions void setStats(int); int setFight(int Fight) { fight = Fight; } int setFlee(int Flee) { flee = Flee; } int setTalk(int Talk) { talk = Talk; } int setPlayerName(string name) { playerName = name; } };