Name refactor / Fixed crash / Power transfer fix

This commit is contained in:
Anuken
2018-09-19 22:17:58 -04:00
parent c9a53aed7b
commit 5248a4eb9c
50 changed files with 88 additions and 99 deletions

View File

@@ -48,7 +48,6 @@ public abstract class InputHandler extends InputAdapter{
public InputHandler(Player player){
this.player = player;
this.section = "player_" + (player.playerIndex + 1);
Timers.run(1f, () -> frag.build(Core.scene.getRoot()));
}
//methods to override
@@ -122,6 +121,10 @@ public abstract class InputHandler extends InputAdapter{
tile.block().tapped(tile, player);
}
public OverlayFragment getFrag(){
return frag;
}
public void update(){
}