PendingTeleport class
Пакет: com.hypixel.hytale.server.core.modules.entity.teleport
Файл: com/hypixel/hytale/server/core/modules/entity/teleport/PendingTeleport.java
implements: Component<EntityStore>
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
static |
ComponentType<EntityStore, PendingTeleport> |
getComponentTypeComponentType<EntityStore, PendingTeleport> getComponentType() |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.modules.entity.teleport;
class="kw">import com.hypixel.hytale.component.Component;
class="kw">import com.hypixel.hytale.component.ComponentType;
class="kw">import com.hypixel.hytale.server.core.modules.entity.EntityModule;
class="kw">import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
class="kw">import javax.annotation.Nonnull;
class="kw">public class PendingTeleport class="kw">implements Component<EntityStore> {
class="kw">public PendingTeleport() {
}
class="kw">public class="kw">static ComponentType<EntityStore, PendingTeleport> getComponentType() {
class="kw">return EntityModule.get().getPendingTeleportComponentType();
}
@Nonnull
@Override
class="kw">public Component<EntityStore> clone() {
class="kw">return new PendingTeleport();
}
}