aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/hud/Cacheable.java
blob: c4ff151e0dda29be50e132555d09cedb26c6b35a (plain)
1
2
3
4
5
6
7
8
9
package cc.polyfrost.oneconfig.hud;

import cc.polyfrost.oneconfig.config.elements.BasicOption;

import java.util.ArrayList;

public interface Cacheable {
    void addCacheOptions(String category, String subcategory, ArrayList<BasicOption> options);
}