using KYFramework; using SimulationServer; internal class Program { private static void Main(string[] args) { Init.Start(); while (true) { Thread.Sleep(1); try { Init.Update(); Init.LateUpdate(); } catch (Exception e) { Init.OnApplicationQuit(); Log.Error(e); } } } }