feat : 房間按鈕調整 (欠缺几个图片。app icon 和空状态图 未更改

This commit is contained in:
eggmanQQQ
2024-09-14 15:30:09 +08:00
parent 8184cdd6e1
commit f929d78540
19 changed files with 270 additions and 204 deletions

View File

@@ -11,6 +11,8 @@ data class GameInfo(
val remark: String = "",
val seq: Int = 0,
var isSelect: Boolean = false,
val skipContent : String = "",
val ruleValue : String = "",
// 本地自己维护的,为了区分普通房
private var isStandardRoom: Boolean? = null,
) : Serializable {
@@ -19,4 +21,10 @@ data class GameInfo(
fun asStandardRoom() {
isStandardRoom = true
}
override fun toString(): String {
return "GameInfo(isShow=$isShow, mgId='$mgId', name='$name', pic='$pic', pic2=$pic2, remark='$remark', seq=$seq, isSelect=$isSelect, skipContent='$skipContent', ruleValue='$ruleValue', isStandardRoom=$isStandardRoom)"
}
}