summaryrefslogtreecommitdiff
path: root/sim/src/HitPoints.cpp
blob: da980f154c42c82c6a1130203ec43a3f747541a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <kurator/sim/HitPoints.h>


namespace kurator
{
namespace sim
{


void
HitPoints::deal(double damage)
{
	health -= damage;
}


bool
HitPoints::is_alive() const
{
	return health > 0.0;
}


}  // namespace sim
}  // namespace kurator