Esempio n. 1
0
 public PieceDefinition(PieceType type, PieceColor color, Point position)
 {
     this.type     = type;
     this.color    = color;
     this.position = position;
 }
Esempio n. 2
0
 public Piece(PieceType type, PieceColor color, Cell cell)
 {
     this.type  = type;
     this.color = color;
     this.cell  = cell;
 }