몬스터 스킬 코드 복구 누락파일

This commit is contained in:
Mingu Kim
2025-06-01 21:59:02 +09:00
parent 9500707cb2
commit 9577cb05b4
10 changed files with 454 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using UnityEngine;
namespace TON
{
public partial class MonsterBase
{
private void OnGUI()
{
if (GUILayout.Button("Hit"))
{
ApplyDamage(1);
}
if (GUILayout.Button("Dead"))
{
ApplyDamage(1000000000);
}
}
}
}