summaryrefslogtreecommitdiff
path: root/sim/src/HitPoints.cpp
blob: bcb7e979eb3b92f0b202508b4e90c904f495fc80 (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)
{
	structure -= damage;
}


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


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


}  // namespace sim
}  // namespace kurator