8 lines
196 B
Kotlin
8 lines
196 B
Kotlin
package ru.dbotthepony.kstarbound.defs
|
|
|
|
import com.google.common.collect.ImmutableList
|
|
|
|
data class ClientConfigParameters(
|
|
val defaultFootstepSound: ImmutableList<String> = ImmutableList.of(),
|
|
)
|