PropsSource interface
Пакет: com.hypixel.hytale.builtin.hytalegenerator.biome
Файл: com/hypixel/hytale/builtin/hytalegenerator/biome/PropsSource.java
Методы (2)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
List<PropRuntime> |
getPropRuntimesList<PropRuntime> getPropRuntimes() |
abstract |
void |
getRuntimesWithIndexvoid getRuntimesWithIndex(int var1, @Nonnull Consumer<PropRuntime> var2) |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.builtin.hytalegenerator.biome;
class="kw">import com.hypixel.hytale.builtin.hytalegenerator.PropRuntime;
class="kw">import java.util.List;
class="kw">import java.util.function.Consumer;
class="kw">import javax.annotation.Nonnull;
class="kw">public class="kw">interface PropsSource {
void getRuntimesWithIndex(int var1, @Nonnull Consumer<PropRuntime> var2);
List<PropRuntime> getPropRuntimes();
}