BasicCustomUIPage class
Пакет: com.hypixel.hytale.server.core.entity.entities.player.pages
Файл: com/hypixel/hytale/server/core/entity/entities/player/pages/BasicCustomUIPage.java
extends: CustomUIPage
Методы (2)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract abstract |
void |
buildvoid build(UICommandBuilder var1) |
abstract |
|
super super(var1, var2) |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.entity.entities.player.pages;
class="kw">import com.hypixel.hytale.component.Ref;
class="kw">import com.hypixel.hytale.component.Store;
class="kw">import com.hypixel.hytale.protocol.packets.interface_.CustomPageLifetime;
class="kw">import com.hypixel.hytale.server.core.ui.builder.UICommandBuilder;
class="kw">import com.hypixel.hytale.server.core.ui.builder.UIEventBuilder;
class="kw">import com.hypixel.hytale.server.core.universe.PlayerRef;
class="kw">import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
class="kw">import javax.annotation.Nonnull;
class="kw">public class="kw">abstract class BasicCustomUIPage class="kw">extends CustomUIPage {
class="kw">public BasicCustomUIPage(@Nonnull PlayerRef var1, @Nonnull CustomPageLifetime var2) {
super(var1, var2);
}
@Override
class="kw">public void build(@Nonnull Ref<EntityStore> var1, @Nonnull UICommandBuilder var2, @Nonnull UIEventBuilder var3, @Nonnull Store<EntityStore> var4) {
this.build(var2);
}
class="kw">public class="kw">abstract void build(UICommandBuilder var1);
}