| 526 | } |
| 527 | |
| 528 | float Monster::maxHealth() const { |
| 529 | return *m_statusController->resourceMax("health"); |
| 530 | } |
| 531 | |
| 532 | float Monster::health() const { |
| 533 | return m_statusController->resource("health"); |
nothing calls this directly
no test coverage detected