camera movement with cube - some weird bug thing

This commit is contained in:
2020-05-28 15:01:47 -04:00
parent 9a6b5ec048
commit 4b51802309
7 changed files with 240 additions and 29 deletions
+5
View File
@@ -3,4 +3,9 @@ abstract public class Game {
abstract public void loop() throws Exception;
abstract public void close() throws Exception;
public void run() throws Exception {
setup();
loop();
}
}