Package org.geysermc.geyser.api.pack
Interface ResourcePackManifest.Dependency
- Enclosing interface:
ResourcePackManifest
public static interface ResourcePackManifest.Dependency
Represents a dependency of a resource pack.
These are references to other resource packs that must be
present in order for this resource pack to apply.
See
Microsoft's docs for further details on dependencies.
- Since:
- 2.1.1
-
Method Summary
Modifier and TypeMethodDescription@NonNull UUIDuuid()Gets the UUID of the resource pack dependency.@NonNull ResourcePackManifest.Versionversion()Gets theResourcePackManifest.Versionof the dependency.
-
Method Details
-
uuid
@NonNull UUID uuid()Gets the UUID of the resource pack dependency.- Returns:
- the uuid
- Since:
- 2.1.1
-
version
@NonNull ResourcePackManifest.Version version()Gets theResourcePackManifest.Versionof the dependency.- Returns:
- the
ResourcePackManifest.Version - Since:
- 2.1.1
-