aboutsummaryrefslogtreecommitdiff
path: root/common/src/main/java/dev/isxander/yacl3/api/NameableEnum.java
blob: 5a50207bb78f0f7cab408a12641be157cc02ec8a (plain)
1
2
3
4
5
6
7
8
9
10
package dev.isxander.yacl3.api;

import net.minecraft.network.chat.Component;

/**
 * Used for the default value formatter of {@link dev.isxander.yacl3.gui.controllers.cycling.EnumController}
 */
public interface NameableEnum {
    Component getDisplayName();
}