/****************************************************************************** * * * Header File for the Player Class * By: Kameron Kinsey * * * * */ #include #include using namespace std; class Player { private: int fight = 10, talk = 10, string playerName; public: // int health = 100; // Get Functions int getFight() { return fight; } int getTalk() { return talk; } string getPlayerName() { return playerName; } // Set Functions void setStats(int); void setFight(int Fight) { fight = Fight; } void setTalk(int Talk) { talk = Talk; } void setPlayerName(string name) { playerName = name; } void doDamage() { health -= 5; } // Check Victory bool checkVictory(bool win); };