12 lines
No EOL
516 B
Kotlin
12 lines
No EOL
516 B
Kotlin
package com.unciv
|
|
|
|
import com.unciv.ui.utils.CrashReportSender
|
|
import com.unciv.ui.utils.NativeFontImplementation
|
|
|
|
class UncivGameParameters(val version: String,
|
|
val crashReportSender: CrashReportSender? = null,
|
|
val exitEvent: (()->Unit)? = null,
|
|
val cancelDiscordEvent: (()->Unit)? = null,
|
|
val fontImplementation: NativeFontImplementation? = null,
|
|
val consoleMode: Boolean = false) {
|
|
} |