mirror of
https://github.com/milimoe/FunGame-Testing.git
synced 2025-04-21 19:59:34 +08:00
16 lines
277 B
C#
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();
|