Package org.geysermc.geyser.api.pack
Interface ResourcePackManifest.Header
- Enclosing interface:
- ResourcePackManifest
public static interface ResourcePackManifest.Header
Represents the header of a resource pack.
-
Method Summary
Modifier and TypeMethodDescription@NonNull StringGets the description of the resource pack.@NonNull ResourcePackManifest.VersionGets the minimum supported Minecraft version of the resource pack.@NonNull Stringname()Gets the name of the resource pack.@NonNull UUIDuuid()Gets the UUID of the resource pack.@NonNull ResourcePackManifest.Versionversion()Gets the version of the resource pack.
-
Method Details
-
uuid
@NonNull UUID uuid()Gets the UUID of the resource pack.- Returns:
- the UUID
-
version
@NonNull ResourcePackManifest.Version version()Gets the version of the resource pack.- Returns:
- the version
-
name
@NonNull String name()Gets the name of the resource pack.- Returns:
- the name
-
description
@NonNull String description()Gets the description of the resource pack.- Returns:
- the description
-
minimumSupportedMinecraftVersion
@NonNull ResourcePackManifest.Version minimumSupportedMinecraftVersion()Gets the minimum supported Minecraft version of the resource pack.- Returns:
- the minimum supported Minecraft version
-