mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
57d9a05f88
- 🛠 Make sure the tutorials compile across platforms! - ✍ Redo quite a bit of the documentation
20 lines
236 B
C++
20 lines
236 B
C++
#ifndef PLAYER_H
|
|
#define PLAYER_H
|
|
|
|
class Player {
|
|
private:
|
|
int m_health;
|
|
|
|
public:
|
|
Player() : m_health(0) {
|
|
}
|
|
void setHealth(int health) {
|
|
m_health = health;
|
|
}
|
|
int getHealth() const {
|
|
return m_health;
|
|
}
|
|
};
|
|
|
|
#endif // PLAYER_H
|