•class Player {
•  private: // hidden
•    int health;
•    int strength;
•    int agility;
•  public:
•    Player();              // constructor - no return type
•    Player(int s, int a);  // alternate constructor void  void move();
•    void attackMonster();
•    void getTreasure();
•};