#include "enemy.hpp" int Enemy::get_health() const noexcept { return _health; } void Enemy::do_damage(int damage) noexcept { _health -= damage; }