Skip to content
Snippets Groups Projects
Commit 42421ac0 authored by davidgundry's avatar davidgundry
Browse files

Removed duplicate controller

parent cc7e0a3d
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 RotateAndShootController implements BattleController {
@Override
public Action getAction(SimpleBattle gameStateCopy, int playerId)
{
return new Action(0,1,false);
}
}
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