Files
WhiteMan_Unity2D/Assets/02_Scripts/Combat/IDamageable.cs

7 lines
158 B
C#

using UnityEngine;
public interface IDamageable
{
void TakeDamage(int amount, Vector2 hitVelocity = default, string hitReactionAnimationState = null);
}