// Creature class test program. // This class lay the ground-work for the Text-RPG game. #include #include using namespace std; /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * P U T Y O U R C R E A T U R E C L A S S H E R E * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ // Implement the Creature class here. // Consider what member functions can be inline, and which must be non-inline // (see assignment description). /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * T E S T D R I V E R C O D E You should not need to modify the code in this section Un-comment the test code as you implement the functions. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ // Test function prototypes void testName(); void testHealthAndDamage(); void testInitialization(); void testDisplay(); /* Simple test program for the user input functions. */ int main() { cout << "NOTE TO PROGRAMMER!"<> holdOpen; return 0; } /* Test the Creature name functions. */ void testName() { /* cout << endl << endl; cout << "*******************************" << endl; cout << "Testing Creature Name."<