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

pacman.controllers.IndividualGhostController Maven / Gradle / Ivy

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

import pacman.game.Constants.*;
import pacman.game.Game;

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

    protected final GHOST ghost;
    protected final MASController controller;

    public IndividualGhostController(GHOST ghost, MASController controller) {
        this.ghost = ghost;
        this.controller = controller;
    }

    public abstract MOVE getMove(Game game, long timeDue);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy