1
0
Fork 0

First Commit

This commit is contained in:
MrDev023 2015-07-15 17:19:40 +02:00
commit 5ccf998834
34 changed files with 1608 additions and 0 deletions

25
VBO/src/main/Game.java Normal file
View file

@ -0,0 +1,25 @@
package main;
import world.*;
public class Game {
private World world;
public Game(){
world= new World(0);
}
public void update(){
world.update();
}
public void render(){
world.render();
}
public void renderGUI(){
}
}