Files
TEngine/DotNet/App/Program.cs
ALEXTANG e5456da482 合理化Address协议逻辑
合理化Address协议逻辑
2023-07-21 17:50:47 +08:00

27 lines
390 B
C#

using TEngine;
using TEngine.Core;
using TEngine.Logic;
try
{
App.Init();
AssemblySystem.Init();
ConfigTableSystem.Bind();
App.Start().Coroutine();
Entry.Start().Coroutine();
while(true)
{
Thread.Sleep(1);
ThreadSynchronizationContext.Main.Update();
SingletonSystem.Update();
}
}
catch (Exception e)
{
Log.Error(e);
}