KStarbound/src/main/kotlin/ru/dbotthepony/kstarbound/server/ServerSettings.kt

16 lines
333 B
Kotlin

package ru.dbotthepony.kstarbound.server
import ru.dbotthepony.kstarbound.json.builder.JsonBuilder
import java.util.UUID
@JsonBuilder
class ServerSettings {
var maxPlayers = ServerChannels.MAX_PLAYERS
var listenPort = 21025
fun from(other: ServerSettings) {
maxPlayers = other.maxPlayers
listenPort = other.listenPort
}
}