|
Quilt Loader 1
|
A container holding both an entrypoint instance and the ModContainer which has provided the entrypoint.
More...
Public Member Functions | |
| T | getEntrypoint () |
| Returns the entrypoint instance. | |
| ModContainer | getProvider () |
| Returns the mod that provided this entrypoint. | |
| default String | getDefinition () |
| Returns a string representation of the entrypoint's definition. | |
A container holding both an entrypoint instance and the ModContainer which has provided the entrypoint.
| <T> | The type of the entrypoint |
org.quiltmc.loader.api.entrypoint.EntrypointContainer.
|
inline |
Returns a string representation of the entrypoint's definition.
Implemented in net.fabricmc.loader.impl.entrypoint.EntrypointContainerImpl< T >.
| T net.fabricmc.loader.api.entrypoint.EntrypointContainer< T >.getEntrypoint | ( | ) |
Returns the entrypoint instance.
It will be constructed the first time you call this method.
Implemented in net.fabricmc.loader.impl.entrypoint.EntrypointContainerImpl< T >.
| ModContainer net.fabricmc.loader.api.entrypoint.EntrypointContainer< T >.getProvider | ( | ) |
Returns the mod that provided this entrypoint.
Implemented in net.fabricmc.loader.impl.entrypoint.EntrypointContainerImpl< T >.