summaryrefslogtreecommitdiff
path: root/sim/src/HitPoints.cpp
blob: 28cf7f744c1ce42a1ea9e151de120b05b5fe6a19 (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
26
27
28
29
30
31
32
#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;
}


double
HitPoints::total() const
{
	return health;
}


}  // namespace sim
}  // namespace kurator