123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Threading;
- namespace ET
- {
- public static class Program
- {
- public static void Main()
- {
-
-
-
-
-
-
-
- Entry.Init();
- Init.Start();
-
- while (true)
- {
- Thread.Sleep(1);
- try
- {
- Init.Update();
- Init.LateUpdate();
- Init.FrameFinishUpdate();
- }
- catch (Exception e)
- {
- Log.Error(e);
- }
- }
- }
- }
- }
|