2026-05-15 충돌오류 진행중

This commit is contained in:
2026-05-15 18:07:50 +09:00
parent ec353d0fd4
commit 53e7f3b302
33 changed files with 902 additions and 65 deletions

View File

@@ -1,4 +1,6 @@
using UnityEngine;
public interface IDamageable
{
void TakeDamage(int amount);
void TakeDamage(int amount, Vector2 hitVelocity = default, string hitReactionAnimationState = null);
}