rcdbquery/src/commonMain/kotlin/de/pheerai/rcdbquery/dataMappings/SearchType.kt
Oliver Rümpelein cc703d5554 First semi-proper DSL-like syntax
- Native builds to compile now
 - Add Arvm 32 bit target
 - Add Jvm main class for test runs
2020-04-08 16:28:31 +02:00

15 lines
324 B
Kotlin

package de.pheerai.rcdbquery.dataMappings
enum class SearchType(
override val prettyName: String,
override val fullName: String,
override val paramId: Int
) : RcdbParamOption {
COASTER("Coaster", "Search for Roller Coaster", 2)
;
companion object {
const val staticParamName = "ot"
}
}