Beispiel #1
0
        public int handleCombatChooseMove(AnimationCallback callback)
        {
            // locate the nearest human
            List <Human> humans = MyBoard.getHumans();

            if (humans.Count() > 0)
            {
                Human    human    = humans[0];
                HexBoard hexBoard = MyBoard.MyHexBoard;

                return(MyBoard.movePlayer(this, human.Location, MyAttributes.actionPoints, callback));
            }

            return(0);
        }