net.minestom.server.entity.pathfinding.NavigableEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.entity.pathfinding;
import org.jetbrains.annotations.NotNull;
/**
* Represents an entity which can use the pathfinder.
*
* All pathfinder methods are available with {@link #getNavigator()}.
*/
public interface NavigableEntity {
@NotNull Navigator getNavigator();
}