All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy