Skip to content
Snippets Groups Projects
Commit 5235a7a3 authored by davidgundry's avatar davidgundry
Browse files

Created package to hold controllers

parent f74fd194
No related branches found
No related tags found
No related merge requests found
package battle.controllers;
import asteroids.Action;
import battle.BattleController;
import battle.SimpleBattle;
/**
* Created by davidgundry on 11/06/15.
*/
public class EmptyController implements BattleController {
@Override
public Action getAction(SimpleBattle gameStateCopy, int playerId) {
return null;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment