diff options
Diffstat (limited to 'sw-common-model')
-rw-r--r-- | sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt index 8d352402..48b26aa4 100644 --- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt +++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/api/actions/Actions.kt @@ -4,6 +4,8 @@ import kotlinx.serialization.Serializable import org.luxons.sevenwonders.model.PlayerMove import org.luxons.sevenwonders.model.Settings import org.luxons.sevenwonders.model.wonders.AssignedWonder +import kotlin.time.ExperimentalTime +import kotlin.time.hours /** * The action to choose the player's name. This is the first action that should be called. @@ -101,12 +103,17 @@ class UpdateSettingsAction( * The action to add a bot to the game. Can only be called in the lobby by the owner of the game. */ @Serializable +@OptIn(ExperimentalTime::class) class AddBotAction( /** * The display name for the bot to add. */ val botDisplayName: String, /** + * The global timeout for the bot, after which it disconnects (whether the game is over or not). + */ + val globalBotTimeoutMillis: Long = 6.hours.toLongMilliseconds(), + /** * The configuration of the bot to add. */ val config: BotConfig = BotConfig(), |