Interface Pack
-
- All Superinterfaces:
AutoCloseable
public interface Pack extends AutoCloseable
The physical representation of game assets that may or may not be loaded in anEngine
.- See Also:
- Minecraft Wiki/Resource Packs
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
PackContents
contents()
Component
description()
String
id()
boolean
isForced()
boolean
isLocked()
PackStatus
status()
Component
title()
-
-
-
Method Detail
-
contents
PackContents contents()
- Returns:
- The
contents
-
description
Component description()
- Returns:
- The
description
-
status
PackStatus status()
- Returns:
- The
PackStatus
-
isForced
boolean isForced()
- Returns:
- True if this pack will always be enabled, false otherwise
-
isLocked
boolean isLocked()
- Returns:
- True if this pack has a locked order, false otherwise
-
close
void close()
- Specified by:
close
in interfaceAutoCloseable
-
-