This is a big commit. Added mouse cursors and a load bar. Started whit the game. and many many other things
This commit is contained in:
parent
448fca2fdf
commit
4e7722fedb
34 changed files with 597 additions and 95 deletions
|
|
@ -111,7 +111,7 @@ public class GameStateManager {
|
|||
public void update(){
|
||||
for(int i=0; i<gameStates.size() ;i++){
|
||||
if(gameStates.get(i).isEnabled()){
|
||||
gameStates.get(i).update();
|
||||
gameStates.get(i).stateUpdate();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -122,7 +122,7 @@ public class GameStateManager {
|
|||
public void render(){
|
||||
for(int i=0; i<gameStates.size() ;i++){
|
||||
if(gameStates.get(i).isEnabled()){
|
||||
gameStates.get(i).render();
|
||||
gameStates.get(i).stateRender();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue