Examples of GreedyStrategy


Examples of br.com.ema.maze.character.strategy.GreedyStrategy

    character1.setStrategy(new AStarStrategy(10000));
    character1.setColor(Color.CYAN);
    mazeConfiguration.getCharacters().put("ASTAR",character1);

    MazeCharacter character2 = new MazeCharacter(250);
    character2.setStrategy(new GreedyStrategy());
    character2.setColor(Color.ORANGE);
    mazeConfiguration.getCharacters().put("GREEDY", character2);

   
    mazeConfiguration.setPassageAllowersInterval(1000);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.