コード例 #1
0
ファイル: TUI.cs プロジェクト: FrenkyBojler/School
 // 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();
 }
コード例 #2
0
ファイル: Minesweeper.cs プロジェクト: FrenkyBojler/School
 public Minesweeper()
 {
     this._stats = new Stats();
     this.size = defaultGridSize;
 }