blob: 604fc2f3e25dbb3d094d40db793ceb65fea1f1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package at.hannibal2.skyhanni.data.jsonobjects.repo
import at.hannibal2.skyhanni.utils.LorenzVec
import com.google.gson.annotations.Expose
import com.google.gson.annotations.SerializedName
data class EventWaypointsJson(
@Expose val presents: Map<String, List<EventWaypointData>>,
@Expose @SerializedName("presents_entrances") val presentsEntrances: Map<String, List<EventWaypointData>>,
)
data class EventWaypointData(
@Expose val name: String,
@Expose val position: LorenzVec,
)
|