blob: bd84cacaa994cebae68277df9cb6739faf72c239 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package at.hannibal2.skyhanni.config.features.dev;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class DevToolConfig {
@Expose
@ConfigOption(name = "Graph Tools", desc = "")
@Accordion
public GraphConfig graph = new GraphConfig();
}
|