blob: 9e04d55c7a28f58199d99a4d60544f67c459ff16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package at.hannibal2.skyhanni.utils.jsonobjects;
import com.google.gson.annotations.Expose;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class ModsJson {
@Expose
public Map<String, Mod> mods = new HashMap<>();
public static class Mod {
@Expose
public List<String> description = new ArrayList<>();
@Expose
public String command = "";
@Expose
public List<String> guiPath = new ArrayList<>();
}
}
|