Package net.minecraftforge.registries
Interface RegisterEvent.RegisterHelper<T>
- Enclosing class:
RegisterEvent
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
Registers the given value with the given name to the registry.default void
register
(ResourceKey<T> key, T value) Registers the given value with the given name to the registry.void
register
(ResourceLocation name, T value) Registers the given value with the given name to the registry.
-
Method Details
-
register
Registers the given value with the given name to the registry. The namespace is inferred based on the active mod container. If you wish to specify a namespace, useregister(ResourceLocation, Object)
instead.- Parameters:
name
- the name of the object to register as its key with the namespaced inferred from the active mod containervalue
- the object value
-
register
Registers the given value with the given name to the registry.- Parameters:
key
- the resource key of the object to registervalue
- the object value
-
register
Registers the given value with the given name to the registry.- Parameters:
name
- the name of the object to register as its keyvalue
- the object value
-