package pathgame; import me.hammerle.snuviengine.api.Window; public class Main { public static void main(String[] args) { Window window = new Window(50_000_000, new BiggerFontWindowView()); window.initialize("Path Game", 1024, 768); PathGame game = new PathGame(); window.open(game); } }