Files
Genesis_Unity/Assets/02_Scripts/_Shared/Status/IDamageable.cs

8 lines
134 B
C#

using UnityEngine;
public interface IDamageable
{
void TakeDamage(int damage, Transform source);
Transform GetTransform();
}