Beispiel #1
0
 public void SetUp()
 {
     Board = new Board(100, 100);
     Player = Board.AddPlayer("red");
 }
Beispiel #2
0
 public void Initialize(int width, int height)
 {
     if (Initialized) return;
     Board = new Board(width, height);
     Initialized = true;
 }