aboutsummaryrefslogtreecommitdiffstats
path: root/deps/sol2/examples/interop/tolua/source/Player.h
blob: 7d8148c9c0b3f4d26ccc24db1c1f4ae237df6f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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