인터랙션 및 액션 구조 생성
기본 채광 인터랙션 생성 채광 인터랙션을 위한 인터랙션 대상인 광산 생성 Kaykit Resource 애셋 추가
This commit is contained in:
10
Assets/Scripts/IDamageable.cs
Normal file
10
Assets/Scripts/IDamageable.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Northbound
|
||||
{
|
||||
/// <summary>
|
||||
/// 데미지를 받을 수 있는 오브젝트
|
||||
/// </summary>
|
||||
public interface IDamageable
|
||||
{
|
||||
void TakeDamage(int damage, ulong attackerId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user