Initial Commit 1

This commit is contained in:
Sebastian Cabrera 2020-03-18 12:36:04 -04:00
commit 36a5c3b9a6
58 changed files with 874 additions and 0 deletions

View file

@ -0,0 +1,20 @@
package bz.bronze.latte.main;
public class Game implements Runnable {
private void update() {
}
private void render() {
}
public void run() {
while (true) {
System.out.println("Game thread running...");
update();
render();
}
}
}

View file

@ -0,0 +1,15 @@
package bz.bronze.latte.main;
public class Main {
public static Thread game;
public static void init() {
game = new Thread(new Game(), "game");
game.start();
}
public static void main(String[] args) {
init();
}
}

2
src/module-info.java Normal file
View file

@ -0,0 +1,2 @@
module latte {
}