Ejemplo n.º 1
0
 public Board(int size)
 {
     this.validator = new Validator();
     this.Size = size;
     this.board = new Figure[this.Size, this.Size];
     this.InitializeStartGameBoard();
 }
Ejemplo n.º 2
0
 public Player(string name, FigureColor color, State playerState)
 {
     this.validator = new Validator();
     this.Name = name;
     this.Color = color;
     this.figures = this.GetStarGameFifures();
     this.takenFigures = new List<IFigure>();
     this.PlayerState = playerState;
 }