7 lines
137 B
Kotlin
7 lines
137 B
Kotlin
package ru.dbotthepony.kstarbound.defs
|
|
|
|
data class CurrencyDefinition(
|
|
val representativeItem: String,
|
|
val playerMax: Long = 999999,
|
|
)
|