12345678910111213141516171819202122232425 |
- 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);
- }
- }
- }
- }
|