feat:完成游戏SDK加载与游戏状态关联

feat:公屏数据与游戏状态关联
feat:增加轮次ID协议
This commit is contained in:
max
2024-05-31 19:47:51 +08:00
parent a6f5b24a6d
commit cdbb895a68
12 changed files with 171 additions and 86 deletions

View File

@@ -13,6 +13,9 @@ class GameRoomData : Serializable {
// 匹配状态0:匹配中、1:匹配成功、2:游戏结束、3:匹配失败)
val matchStatus: Int? = null
// 轮次ID
val matchRoundId: Long? = null
// 轮次状态0:进行中、1:结束)
val roundStatus: Int? = null
}