2024-09-19 00:45:47 +08:00

16 lines
277 B
C#

using Milimoe.FunGame.Testing.Tests;
FunGameSimulation.LoadModules();
bool printout = true;
List<string> strs = FunGameSimulation.StartGame(printout);
if (printout == false)
{
foreach (string str in strs)
{
Console.WriteLine(str);
}
}
Console.ReadKey();