示例#1
0
文件: Draught.cs 项目: sys27/Draughts
 public Draught(BoardPoint point, DraughtType type, Players player)
 {
     this.point = point;
     this.type = type;
     this.player = player;
 }
示例#2
0
文件: Draught.cs 项目: sys27/Draughts
 public Draught(int x, int y, DraughtType type, Players player)
     : this(new BoardPoint(y, x), type, player)
 {
 }