타이틀 ui 수정 및 캐릭터 선택 화면 추가

This commit is contained in:
aube.lee
2025-01-28 22:00:00 +09:00
parent e665360833
commit fa08e676e5
23 changed files with 2476 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public interface IDamage
{
public void ApplyDamage(float damage);
}
}