Correction du bug de getBlock dans la class World
This commit is contained in:
parent
521e58acb9
commit
98b7946cc2
10 changed files with 405 additions and 121 deletions
|
@ -26,5 +26,22 @@ public class Game {
|
|||
public void renderGUI(){
|
||||
|
||||
}
|
||||
|
||||
public World getWorld() {
|
||||
return world;
|
||||
}
|
||||
|
||||
public void setWorld(World world) {
|
||||
this.world = world;
|
||||
}
|
||||
|
||||
public int getUpdate() {
|
||||
return update;
|
||||
}
|
||||
|
||||
public void setUpdate(int update) {
|
||||
this.update = update;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue