diff options
Diffstat (limited to 'Assets/Scripts/Avatar/IInteractable.cs')
-rw-r--r-- | Assets/Scripts/Avatar/IInteractable.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Assets/Scripts/Avatar/IInteractable.cs b/Assets/Scripts/Avatar/IInteractable.cs index 23e49912..7a648c6c 100644 --- a/Assets/Scripts/Avatar/IInteractable.cs +++ b/Assets/Scripts/Avatar/IInteractable.cs @@ -14,8 +14,10 @@ public interface IInteractable bool IsHit(); - bool IsHurt(); - + bool IsHurt();
+
+ void OnHit(HitInfo hitInfo); + void OnHurt(HurtInfo hurtInfo); } |