public static void main(String... args) throws IOException, InterruptedException {
GameState game = Windows7GameState.createAdvancedGame();
AIPlayer player = new ProbablisticSearchTreeAI(DebugMode.ON);
player.solve(game);
Thread.sleep(3333);
System.out.println(game.getState());
}