移除 重构

移除 重构
This commit is contained in:
ALEXTANG
2023-07-13 12:46:26 +08:00
parent 8757e1f550
commit a69f53592e
1165 changed files with 0 additions and 41317 deletions

View File

@@ -1,29 +0,0 @@
using System;
using System.Threading;
namespace ET
{
public static class Program
{
public static void Main()
{
Entry.Init();
Init init = new();
init.Start();
while (true)
{
Thread.Sleep(1);
try
{
init.Update();
init.LateUpdate();
}
catch (Exception e)
{
Log.Error(e);
}
}
// ReSharper disable once FunctionNeverReturns
}
}
}