Uses of Class
org.geysermc.geyser.registry.ArrayRegistry
-
Uses of ArrayRegistry in org.geysermc.geyser.registry
Modifier and TypeFieldDescriptionstatic ArrayRegistry<BlockMapping>
BlockRegistries.JAVA_BLOCKS
A registry which stores Java IDs toBlockMapping
, containing miscellaneous information about blocks and their behavior in many cases.Modifier and TypeMethodDescriptionstatic <I, M> ArrayRegistry<M>
ArrayRegistry.create(I input, Supplier<RegistryLoader<I,M[]>> registryLoader)
Creates a new array registry with the givenRegistryLoader
supplier and input.static <I, M> ArrayRegistry<M>
ArrayRegistry.create(I input, RegistryLoader<I,M[]> registryLoader)
Creates a new array registry with the givenRegistryLoader
and input.static <I, M> ArrayRegistry<M>
ArrayRegistry.create(Supplier<RegistryLoader<I,M[]>> registryLoader)
Creates a new array registry with the givenRegistryLoader
supplier.static <I, M> ArrayRegistry<M>
ArrayRegistry.create(RegistryLoader<I,M[]> registryLoader)
Creates a new array registry with the givenRegistryLoader
.