LiteralText.java 258 B

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