Fjerner ubrukt debugging variabel

This commit is contained in:
Kristian Knarvik 2020-02-27 19:17:03 +01:00
parent 8f416baf51
commit 6ba5c05813

View File

@ -37,7 +37,6 @@ public class GameLauncher extends ApplicationAdapter implements InputProcessor {
private Vector2 lastTouch;
private final int viewPortWidth = 12 * tileDimensions;
private final int viewPortHeight = 12 * tileDimensions;
private boolean debugging = false;
@Override
public void create() {
@ -116,6 +115,8 @@ public class GameLauncher extends ApplicationAdapter implements InputProcessor {
this.game = debugGame;
this.debugGame = temp;
return true;
default:
return false;
}
return false;
}