First commit

This commit is contained in:
2026-06-29 19:26:37 +09:00
commit 9efb08fdf3
11 changed files with 338 additions and 0 deletions

12
Battle/BattleManager.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace Battle
{
public static class BattleManager
{
public static int CurrentGameSeconds => 0;
public static void SpawnMinion()
{
//풀을 활용한 미니언 스폰 로직
}
}
}