1
0
Fork 0

Correction du bug de getBlock dans la class World

This commit is contained in:
MrDev023 2015-07-19 14:32:14 +02:00
parent 521e58acb9
commit 98b7946cc2
10 changed files with 405 additions and 121 deletions

View file

@ -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;
}
}