10 lines
213 B
C#
10 lines
213 B
C#
namespace Northbound
|
|
{
|
|
/// <summary>
|
|
/// 데미지를 받을 수 있는 오브젝트
|
|
/// </summary>
|
|
public interface IDamageable
|
|
{
|
|
void TakeDamage(int damage, ulong attackerId);
|
|
}
|
|
} |