sol2/examples/interop/tolua/source/Player.h
ThePhD 57d9a05f88
🎨 Refactor tutorial examples
- 🛠 Make sure the tutorials compile across platforms!
- ✍ Redo quite a bit of the documentation
2021-03-06 10:14:48 -05:00

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