mirror of
https://github.com/yairm210/Unciv.git
synced 2025-02-05 08:28:16 +07:00
16 lines
735 B
Kotlin
16 lines
735 B
Kotlin
package com.unciv
|
|
|
|
import com.unciv.logic.CustomSaveLocationHelper
|
|
import com.unciv.ui.utils.CrashReportSender
|
|
import com.unciv.ui.utils.LimitOrientationsHelper
|
|
import com.unciv.ui.utils.NativeFontImplementation
|
|
|
|
class UncivGameParameters(val version: String,
|
|
val crashReportSender: CrashReportSender? = null,
|
|
val cancelDiscordEvent: (() -> Unit)? = null,
|
|
val fontImplementation: NativeFontImplementation? = null,
|
|
val consoleMode: Boolean = false,
|
|
val customSaveLocationHelper: CustomSaveLocationHelper? = null,
|
|
val limitOrientationsHelper: LimitOrientationsHelper? = null
|
|
) { }
|