You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CustoMIUIzer/app/src/main/java/name/mikanoshi/customiuizer/utils/ModData.java

19 lines
305 B
Java

package name.mikanoshi.customiuizer.utils;
public class ModData {
public enum ModCat {
pref_key_system,
pref_key_launcher,
pref_key_controls,
pref_key_various
}
public String title;
public String breadcrumbs;
public String key;
public ModCat cat;
public String sub;
public int order;
}