projection matrix

This commit is contained in:
2020-05-26 12:04:13 -04:00
parent 7288a7ee99
commit 1285842b55
12 changed files with 233 additions and 46 deletions
+6
View File
@@ -0,0 +1,6 @@
abstract public class Game {
abstract public void setup() throws Exception;
abstract public void loop() throws Exception;
abstract public void close() throws Exception;
}