blob: 6ad72e8dc414dc934e373a50952ee294c066a803 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package dev.isxander.yacl3.gui;
import dev.isxander.yacl3.api.OptionDescription;
import net.minecraft.ChatFormatting;
import net.minecraft.network.chat.Component;
public record DescriptionWithName(Component name, OptionDescription description) {
public static DescriptionWithName of(Component name, OptionDescription description) {
return new DescriptionWithName(name.copy().withStyle(ChatFormatting.BOLD), description);
}
}
|