All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xyz.cssxsh.arknights.Utils.kt Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version
package xyz.cssxsh.arknights

import kotlinx.serialization.json.*
import java.util.*

public val CustomJson: Json = Json {
    prettyPrint = true
    ignoreUnknownKeys = true
    isLenient = true
    allowStructuredMapKeys = true
    coerceInputValues = true
}

public enum class ServerType(public val locale: Locale) {
    CN(Locale.CHINA),
    US(Locale.US),
    JP(Locale.JAPAN),
    KR(Locale.KOREA),
    TW(Locale.TAIWAN);
}

public var SERVER: ServerType = ServerType.CN

public typealias Server = Map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy