AIsOfCatan.DebugAgent.MoveRobber C# (CSharp) 메소드

MoveRobber() 공개 메소드

public MoveRobber ( IGameState state ) : int
state IGameState
리턴 int
        public int MoveRobber(IGameState state)
        {
            if (!silent)
                Console.WriteLine(id + ": Move robber");
            return ((GameState)state).Board.GetRobberLocation() == 8 ? 9 : 8;
        }