Пример #1
0
 public Unit(string type, string color, BoardLibrary.Cell cell, Image image)
 {
     Type          = type;
     Color         = color;
     Cell          = cell;
     Image         = image;
     possibleSteps = new List <BoardLibrary.Cell> {
     };
 }
Пример #2
0
 public KingWhite(string type, string color, BoardLibrary.Cell cell, Image image) : base(type, color, cell, image)
 {
 }
Пример #3
0
 public override void Move(BoardLibrary.Cell cell)
 {
     Cell = cell;
 }
Пример #4
0
 public RookBlack(string type, string color, BoardLibrary.Cell cell, Image image) : base(type, color, cell, image)
 {
 }