인터랙션 및 액션 구조 생성

기본 채광 인터랙션 생성
채광 인터랙션을 위한 인터랙션 대상인 광산 생성
Kaykit Resource 애셋 추가
This commit is contained in:
2026-01-24 22:54:23 +09:00
parent ec37a3261e
commit 05233497e7
591 changed files with 52864 additions and 14 deletions

View File

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