mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
1d0683a53e
Implements #578
9 lines
123 B
Plaintext
9 lines
123 B
Plaintext
$#include "Player.h"
|
|
|
|
class Player {
|
|
Player();
|
|
~Player();
|
|
void setHealth(int _health);
|
|
int getHealth();
|
|
};
|