9 lines
123 B
Plaintext
Raw Normal View History

2024-03-07 03:33:59 -05:00
$#include "Player.h"
class Player {
Player();
~Player();
void setHealth(int _health);
int getHealth();
};