Beispiel #1
0
        public virtual Move getMove()
        {
            Move result = new GameCore.Move();

            result.getFromUser(this);
            return(result);
        }
Beispiel #2
0
        //private board[]

        public GameCore.Move getNextMove(GameCore.Board board)
        {
            //Build the result
            GameCore.Move result = new GameCore.Move();



            //return the result
            return(result);
        }