// Vypíše panel statistik public static void printStats(Stats s) { Console.Write("Min ve hře: {0}".PadRight(18), s.minesTotal); Console.Write("| Počet kroků: {0}\n", s.steps); Console.Write("Min označno: {0}", s.minesFound); TUI.printHorizontalBorder(); }
public Minesweeper() { this._stats = new Stats(); this.size = defaultGridSize; }