blob: 400842f42ca410154f6ef3c8c595e5d4f52496c8 (
plain)
1
2
3
4
5
6
7
8
|
package moe.nea.notenoughupdates.util
import kotlinx.serialization.Serializable
@Serializable
data class Locraw(val server: String, val gametype: String? = null, val mode: String? = null, val map: String? = null) {
val skyblockLocation = if (gametype == "SKYBLOCK") mode else null
}
|