|
@@ -1,11 +1,10 @@
|
|
package pathgame;
|
|
package pathgame;
|
|
|
|
|
|
-import me.hammerle.snuviengine.api.ResizingWindowView;
|
|
|
|
import me.hammerle.snuviengine.api.Window;
|
|
import me.hammerle.snuviengine.api.Window;
|
|
|
|
|
|
public class Main {
|
|
public class Main {
|
|
public static void main(String[] args) {
|
|
public static void main(String[] args) {
|
|
- Window window = new Window(50_000_000, new ResizingWindowView(400, 300));
|
|
|
|
|
|
+ Window window = new Window(50_000_000, new BiggerFontWindowView());
|
|
window.initialize("Path Game", 1024, 768);
|
|
window.initialize("Path Game", 1024, 768);
|
|
PathGame game = new PathGame();
|
|
PathGame game = new PathGame();
|
|
window.open(game);
|
|
window.open(game);
|