public TigerCaptureMove(BoardSpace startSpace, BoardSpace endSpace, BoardSpace jumpSpace, AbstractPlayer player) { this.StartSpace = startSpace; this.EndSpace = endSpace; this.Player = player; this.jumpSpace = jumpSpace; }
public SlideMove(BoardSpace startSpace, BoardSpace endSpace, AbstractPlayer player) { this.StartSpace = startSpace; this.EndSpace = endSpace; this.Player = player; }
public GoatPlacementMove(BoardSpace startSpace, BoardSpace endSpace, AbstractPlayer player) : base(startSpace, endSpace, player) { }
public AbstractMove(BoardSpace startSpace, BoardSpace endSpace, AbstractPlayer player) { this.startSpace = startSpace; this.endSpace = endSpace; this.player = player; }