Skip to content
Snippets Groups Projects
BattleController.java 195 B
package battle;

import asteroids.Action;

/**
 * Created by simon lucas on 10/06/15.
 */

public interface BattleController {

    Action getAction(SimpleBattle gameStateCopy, int playerId);

}