io.github.srcimon.screwbox.examples.pathfinding.PathfindingExample Maven / Gradle / Ivy
The newest version!
package io.github.srcimon.screwbox.examples.pathfinding;
import io.github.srcimon.screwbox.core.Engine;
import io.github.srcimon.screwbox.core.ScrewBox;
import io.github.srcimon.screwbox.examples.pathfinding.scenes.DemoScene;
public class PathfindingExample {
public static void main(String[] args) {
Engine engine = ScrewBox.createEngine("Pathfinding Example");
engine.scenes().add(new DemoScene());
engine.assets().enableLogging().prepareClassPackageAsync(PathfindingExample.class);
engine.start(DemoScene.class);
}
}