blob: 4f2ff81a6bd1c536b887b3b3680331d549fb8e21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <kurator/sim/HitPoints.h>
namespace kurator
{
namespace sim
{
void
HitPoints::deal(double damage)
{
health -= damage;
}
} // namespace sim
} // namespace kurator
|