7 lines
158 B
C#
7 lines
158 B
C#
using UnityEngine;
|
|
|
|
public interface IDamageable
|
|
{
|
|
void TakeDamage(int amount, Vector2 hitVelocity = default, string hitReactionAnimationState = null);
|
|
}
|