diff --git a/CHANGELOG.md b/CHANGELOG.md index ba88d7b936..60358d2838 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,8 @@ * `TelegramBotAPI`: * Now any getting of updates will return `UnknownUpdateType` when inside of deserialization will be `SerializationException` or `NotImplemented` error + * `CallbackGame` currently is an object + * It is possible to use `CallbackGame` for now ### 0.26.3 diff --git a/TelegramBotAPI/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/games/CallbackGame.kt b/TelegramBotAPI/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/games/CallbackGame.kt index 1d74fd18ff..32da936cf7 100644 --- a/TelegramBotAPI/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/games/CallbackGame.kt +++ b/TelegramBotAPI/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/games/CallbackGame.kt @@ -3,8 +3,4 @@ package com.github.insanusmokrassar.TelegramBotAPI.types.games import kotlinx.serialization.Serializable @Serializable -class CallbackGame { - init { - TODO() - } -} +object CallbackGame