2024-09-15 23:38:51 +08:00

14 lines
243 B
C#

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