Skip to content
Snippets Groups Projects
Commit 9a3cc309 authored by davidgundry's avatar davidgundry
Browse files

Added RotateAndShootController

parent 57384e72
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