1$#include "Player.h"
2
3class Player {
4    Player();
5    ~Player();
6    void setHealth(int _health);
7    int getHealth();
8};
9