This commit is contained in:
paulevsGitch 2021-05-23 00:52:01 +03:00
parent b80a7b3630
commit 6b0bf593ad
13 changed files with 1028 additions and 2 deletions

View file

@ -0,0 +1,9 @@
package ru.bclib.config;
public class EntryConfig extends IdConfig {
public EntryConfig(String modID, String group) {
super(modID, group, (id, entry) -> {
return new ConfigKey(entry, id);
});
}
}