All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pacman.entries.ghostMAS.Pinky Maven / Gradle / Ivy

There is a newer version: 2.0.1.0
Show newest version
package pacman.entries.ghostMAS;

import pacman.controllers.IndividualGhostController;
import pacman.game.Constants;
import pacman.game.Game;

/**
 * Created by Piers on 11/11/2015.
 */
public class Pinky extends IndividualGhostController {

    public Pinky() {
        super(Constants.GHOST.PINKY);
    }

    @Override
    public Constants.MOVE getMove(Game game, long timeDue) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy