AIMA.Core.Environment.TicTacToe.TicTacToe.makeMove C# (CSharp) 메소드

makeMove() 공개 메소드

public makeMove ( GameState state, int x, int y ) : GameState
state AIMA.Core.Search.Adversarial.GameState
x int
y int
리턴 AIMA.Core.Search.Adversarial.GameState
	public GameState makeMove(GameState state, int x, int y) {
		GameState temp = getMove(state, x, y);
		if (temp != null) {
			presentState = temp;
		}
		return presentState;
	}

Same methods

TicTacToe::makeMove ( GameState state, Object o ) : GameState
TicTacToe::makeMove ( int x, int y ) : GameState