Files
Northbound/Assets/Scripts/IDamageable.cs

11 lines
236 B
C#

namespace Northbound
{
/// <summary>
/// 데미지를 받을 수 있는 오브젝트
/// </summary>
public interface IDamageable
{
void TakeDamage(int damage, ulong attackerId);
bool IsDead();
}
}