First Commit
This commit is contained in:
commit
5ccf998834
34 changed files with 1608 additions and 0 deletions
25
VBO/src/main/Game.java
Normal file
25
VBO/src/main/Game.java
Normal 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(){
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue