GameSprint1Done, little bug. When aiming right down not possible to hit with button 1 and 3 :S

This commit is contained in:
Remco
2015-05-26 22:14:44 +02:00
parent 2af16890d4
commit 3bc4f55f5a
18 changed files with 515 additions and 84 deletions
+2 -2
View File
@@ -23,10 +23,10 @@ public class GameStateManager {
public void next() {
index++;
index %= gamestates.size();
currentState = gamestates.get(index);
}
public void update(){
currentState = gamestates.get(index);
public void update(){
currentState.update();
}
}