Code/net/minecraft/util/OptionEnum.java

13 lines
243 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.util;
import net.minecraft.network.chat.Component;
public interface OptionEnum {
int getId();
String getKey();
default Component getCaption() {
return Component.translatable(this.getKey());
}
}