Files

8 lines
134 B
C#

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