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

            this.jumpSpace = jumpSpace;
        }
Esempio n. 2
0
 public SlideMove(BoardSpace startSpace, BoardSpace endSpace, AbstractPlayer player)
 {
     this.StartSpace = startSpace;
     this.EndSpace = endSpace;
     this.Player = player;
 }
Esempio n. 3
0
 public GoatPlacementMove(BoardSpace startSpace, BoardSpace endSpace,
     AbstractPlayer player)
     : base(startSpace, endSpace, player)
 {
 }
Esempio n. 4
0
 public AbstractMove(BoardSpace startSpace, BoardSpace endSpace, AbstractPlayer player)
 {
     this.startSpace = startSpace;
     this.endSpace = endSpace;
     this.player = player;
 }