LiteralText.java 290 B

123456789101112
  1. package chylex.bettercontrols.util;
  2. import net.minecraft.network.chat.TextComponent;
  3. public final class LiteralText extends TextComponent {
  4. public static LiteralText text(final String text) {
  5. return new LiteralText(text);
  6. }
  7. public LiteralText(final String msg) {
  8. super(msg);
  9. }
  10. }