IPath interface
Пакет: com.hypixel.hytale.server.core.universe.world.path
Файл: com/hypixel/hytale/server/core/universe/world/path/IPath.java
Методы (3)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
Waypoint |
getWaypoint get(int var1) |
abstract |
List<Waypoint> |
getPathWaypointsList<Waypoint> getPathWaypoints() |
abstract |
int |
lengthint length() |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.universe.world.path;
class="kw">import java.util.List;
class="kw">import java.util.UUID;
class="kw">import javax.annotation.Nullable;
class="kw">public class="kw">interface IPath<Waypoint class="kw">extends IPathWaypoint> {
@Nullable
UUID getId();
@Nullable
String getName();
List<Waypoint> getPathWaypoints();
int length();
Waypoint get(int var1);
}