Moved packages and created BaseGlyphSet

This commit is contained in:
Willem Cazander 2022-02-02 22:51:56 +01:00
parent b4106211c8
commit ac8eea07c1
62 changed files with 715 additions and 178 deletions

View file

@ -7,6 +7,11 @@ import java.util.Map;
public interface BãßBȍőnCoffinʸᴰ<T extends BãßBȍőnCoffinStoreKeyʸᴰ> {
Object GET_OBJ(T key);
@SuppressWarnings("unchecked")
default <Y> Y GET_OBJ(T key, Class<Y> type) {
return (Y) GET_OBJ(key);
}
default String GET_STR(T key) {
return String.class.cast(GET_OBJ(key));