Exemplo n.º 1
0
 public Board(BoardProperties context)
 {
     _context    = context;
     _data       = new PieceType[_context.RowSize, _context.ColSize];
     _pieceCount = 0;
 }
Exemplo n.º 2
0
 public BoardFactory(BoardProperties context, PositionManager positions)
 {
     this.context   = context;
     this.positions = positions;
 }