
Getting resolution errors with AutoConfig
TechPro424 opened this issue ยท 1 comments
package in.techpro424.groupmessages.config;
import me.shedaniel.autoconfig.ConfigData;
import me.shedaniel.autoconfig.annotation.Config;
@Config(name = "group-messages")
public class AutoConfig implements ConfigData {
boolean toggleA = true;
boolean toggleB = false;
@Config.Gui.CollapsibleObject
InnerStuff stuff = new InnerStuff();
@Config.Gui.Excluded
InnerStuff invisibleStuff = new InnerStuff();
static class InnerStuff {
int a = 0;
int b = 1;
}
}
Getting an error saying that Config.Gui.CollapsibleObject cannot be resolved to a type
and also Config.Gui.Excluded cannot be resolved to a type