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