Used StringUnicode

This commit is contained in:
Willem Cazander 2022-10-24 05:27:27 +02:00
parent ac1e1e5c43
commit c9ccadca44
15 changed files with 59 additions and 38 deletions

View file

@ -5,6 +5,7 @@ import java.util.Map;
import love.distributedrebirth.bassboon.clazz.BãßBȍőnAuthor注;
import love.distributedrebirth.bassboon.jpp.lang.StringGhostKey;
import love.distributedrebirth.bassboon.jpp.lang.StringUnicode;
@BãßBȍőnAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
public interface BãßBȍőnCoffinGhost {
@ -16,6 +17,10 @@ public interface BãßBȍőnCoffinGhost {
return (Y) GHOST_OBJ(key);
}
default StringUnicode GHOST_UNICODE(StringGhostKey key) {
return StringUnicode.class.cast(GHOST_OBJ(key));
}
default String GHOST_STR(StringGhostKey key) {
return String.class.cast(GHOST_OBJ(key));
}