Skip to content

Commit

Permalink
fix: wrong commment
Browse files Browse the repository at this point in the history
  • Loading branch information
DvdPlaat committed Feb 27, 2024
1 parent 8d41cde commit 4c26317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
var line = Console.ReadLine();
// log it to the console for debugging-purposes
Console.WriteLine("# " + line);
// Fill the grid with zeros indicating that that slot can be used to roll on and the rest will be filled with -1 (non placeble)
var data = line!.Split(" ").Select(c => Int32.Parse(c)).ToArray();
layout.Add(data);
}

// Fill the grid with zeros indicating that that slot can be used to roll on and the rest will be filled with -1 (non placeble)
var gameState = layout.Select(row => row.Select(c => c != 0 ? 0 : -1).ToArray()).ToArray();

var rnd = new Random();
Expand Down

0 comments on commit 4c26317

Please sign in to comment.