@ -308,7 +308,7 @@ AnimationState Monster::GetDeathAnimationName(){
return AnimationState::IDLE_S;
}
bool Monster::Hurt(int damage){
if(hp<=0) return false;
hp=std::max(0,hp-damage);