implement biome colors on fabric

This commit is contained in:
dfsek
2021-12-31 23:43:32 -07:00
parent 3a626d9101
commit 039e45ef97
6 changed files with 125 additions and 106 deletions

View File

@@ -27,4 +27,8 @@ public class Context {
map.put(properties.getClass(), properties);
return this;
}
public <T extends Properties> boolean has(Class<T> test) {
return map.containsKey(test);
}
}