This commit is contained in:
milimoe 2026-04-27 21:59:16 +08:00
parent 7ac707bdc5
commit c94eb5dda8
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -237,7 +237,7 @@ while (true)
{ {
FunGameSimulation.IsDebug = true; FunGameSimulation.IsDebug = true;
DateTime start = DateTime.Now; DateTime start = DateTime.Now;
await FunGameSimulation.StartSimulationGame(true, false, true, false, useStore: false, hasMap: true); await FunGameSimulation.StartSimulationGame(true, false, true, false, useStore: false, hasMap: false);
DateTime end = DateTime.Now; DateTime end = DateTime.Now;
Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒"); Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒");
ConsoleKeyInfo key = Console.ReadKey(); ConsoleKeyInfo key = Console.ReadKey();
@ -247,7 +247,7 @@ while (true)
} }
await Task.Delay(1); await Task.Delay(1);
start = DateTime.Now; start = DateTime.Now;
await FunGameSimulation.StartSimulationGame(true, false, false, false, hasMap: true); await FunGameSimulation.StartSimulationGame(true, false, false, false, hasMap: false);
end = DateTime.Now; end = DateTime.Now;
Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒"); Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒");
key = Console.ReadKey(); key = Console.ReadKey();