public TigerCaptureMove(BoardSpace startSpace, BoardSpace endSpace, BoardSpace jumpSpace, AbstractPlayer player)
        {
            this.StartSpace = startSpace;
            this.EndSpace = endSpace;
            this.Player = player;

            this.jumpSpace = jumpSpace;
        }
Exemple #2
0
 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)
 {
 }
Exemple #4
0
 public AbstractMove(BoardSpace startSpace, BoardSpace endSpace, AbstractPlayer player)
 {
     this.startSpace = startSpace;
     this.endSpace = endSpace;
     this.player = player;
 }