Пример #1
0
 public Board(int width, int height, double fill)
 {
     Cells       = new BoardCell[width, height];
     Coordinates = new CoordinateManager2D(Cells);
     Random      = new Random();
     Fill        = fill;
 }
Пример #2
0
 public BoardCursor(CoordinateManager2D coordinates)
 {
     Coordinates = coordinates;
     Reset();
 }