Files
Northbound/Assets/Scripts/IDamageable.cs
dal4segno 05233497e7 인터랙션 및 액션 구조 생성
기본 채광 인터랙션 생성
채광 인터랙션을 위한 인터랙션 대상인 광산 생성
Kaykit Resource 애셋 추가
2026-01-24 22:54:23 +09:00

10 lines
213 B
C#

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