간단한 루프 추가

This commit is contained in:
2025-12-07 04:30:11 +09:00
parent ed36f4e747
commit 3261e85b33
2 changed files with 52 additions and 3 deletions

View File

@@ -20,7 +20,17 @@ namespace WarhoundConsole
private static void MainInternal(string[] args)
{
Singleton.I.Initialize();
Singleton.I.Initialize(new());
bool exitRequested = Singleton.I.ExitRequested;
while (!exitRequested)
{
exitRequested = Singleton.I.ExitRequested;
}
// Graceful shutdown
}
}
}