Newer
Older
import battle.controllers.EmptyController;
import battle.controllers.FireController;
import battle.controllers.FireForwardController;
import battle.controllers.RotateAndShoot;
/**
* Created by simon lucas on 10/06/15.
*/
public class BattleTest {
SimpleBattle battle = new SimpleBattle();
BattleController player1 = new EmptyController();
BattleController player2 = new FireForwardController();
battle.playGame(player1, player2);