Removed old class

This commit is contained in:
Sebastian Cabrera 2019-08-28 23:24:27 -04:00
parent b55c961c1d
commit 8e7367dce8
2 changed files with 0 additions and 22 deletions

View file

@ -1,22 +0,0 @@
package bz.bronze.pixels.engine;
public class Init {
static Window window = new Window();
//static Gameloop game = new Gameloop();
public static void print(String out) {
System.out.println(out);
}
public static void init() {
window.create();
//game.start();
print("Window Initialized!");
print("Gameloop Started!");
}
//public static void main(String[] args) throws Exception {
//init();
//}
}