修复BUG和添加地图展示

This commit is contained in:
milimoe 2026-01-23 01:25:47 +08:00
parent 0f9cd1f9a3
commit 955c676092
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -116,7 +116,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: false); await FunGameSimulation.StartSimulationGame(true, false, true, false, useStore: false, hasMap: true);
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();
@ -126,7 +126,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: false); await FunGameSimulation.StartSimulationGame(true, false, false, false, hasMap: true);
end = DateTime.Now; end = DateTime.Now;
Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒"); Console.WriteLine("模拟时长" + (end - start).TotalSeconds + "秒");
key = Console.ReadKey(); key = Console.ReadKey();