FabLabsMC / fiber

A configuration system. Maintained by @zeroeightysix and @Pyrofab
Apache License 2.0
32 stars 8 forks source link

Pojos can't have subnodes #6

Closed zeroeightysix closed 5 years ago

zeroeightysix commented 5 years ago

POC:

public final class Pojo {
    @Setting.Node("subnode")
    SubNode node;

    public class SubNode {
        @Setting(name = "setting1")
        public final int a = 5;
    }

}