1
0
Fork 0
This repository has been archived on 2024-01-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Voxel-Test/VBO/src/main/Game.java
2015-07-16 13:30:47 +02:00

30 lines
355 B
Java

package main;
import world.*;
public class Game {
private World world;
private int update = 0;
public Game(){
world= new World(0);
}
public void update(){
if(update >= 2){
world.update();
update = 0;
}
update++;
}
public void render(){
world.render();
}
public void renderGUI(){
}
}