a beautyfull non working application :)

This commit is contained in:
2022-04-28 14:16:20 +02:00
parent a37c4c873d
commit a4e8dfef6b
4 changed files with 172 additions and 7 deletions
+6 -1
View File
@@ -43,16 +43,21 @@ namespace WaveFunctionCollapseCLI
colors.Add(ConsoleColor.DarkGreen); //Little_Forest
colors.Add(ConsoleColor.DarkGray); //Forest (Sorry I dont have tha many colors to work with)
int step = 1;
while (true)
{
Console.Clear();
Console.WriteLine("********** Welcome to WaveFunctionCollapse **********");
Console.WriteLine("Press any key to to to the next step");
Console.WriteLine($"Step : {step}");
map.NextStep();
if (step > 1)
map.NextStep();
map.Display(avaibleTilesTypes,colors);
Console.ReadKey();
step++;
}
}
}