Main.java 391 B

12345678910111213
  1. package pathgame;
  2. import me.hammerle.snuviengine.api.ResizingWindowView;
  3. import me.hammerle.snuviengine.api.Window;
  4. public class Main {
  5. public static void main(String[] args) {
  6. Window window = new Window(50_000_000, new ResizingWindowView(400, 300));
  7. window.initialize("Path Game", 1024, 768);
  8. PathGame game = new PathGame();
  9. window.open(game);
  10. }
  11. }