blob: 41c4451e596cfee5abda3044d67b8b2eace74808 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package at.hannibal2.skyhanni.utils.jsonobjects;
import at.hannibal2.skyhanni.utils.LorenzVec;
import com.google.gson.annotations.Expose;
import java.util.List;
import java.util.Map;
public class EnigmaSoulsJson {
@Expose
public Map<String, List<EnigmaPosition>> areas;
public static class EnigmaPosition {
@Expose
public String name;
@Expose
public LorenzVec position;
}
}
|