aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/polyfrost/oneconfig/config/data/OptionPage.java
blob: 12aef6a3943e8638e69452f7e502e786676ae72a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package io.polyfrost.oneconfig.config.data;


import java.util.HashMap;

public class OptionPage {
    public final String name;
    public final Mod mod;
    /**
     * Depth 1 = categories
     * Depth 2 = subcategories
     * Depth 3 = list of options
     */
    public final HashMap<String, OptionCategory> categories = new HashMap<>();

    public OptionPage(String name, Mod mod) {
        this.name = name;
        this.mod = mod;
    }
}