local hejiangFunctions=ZPFramework.ZPFrameworkClassImprot("zp_base.luaScript.ZPFunctions") --获取小家是否可以看牌 function hejiangFunctions.getLittleIsCanLookCard() local roomInfo = app.room.roomInfo; local jsonInfo = json.decode(roomInfo.strGameInfo) if jsonInfo then if getNumBand(jsonInfo.specialRule,0x0020) > 0 then return true end end return false end function hejiangFunctions.getIsDelayTimeTip() local roomInfo = app.room.roomInfo; local jsonInfo = json.decode(roomInfo.strGameInfo) if jsonInfo then if getNumBand(jsonInfo.specialRule,0x0400) > 0 then return true end end return false end return hejiangFunctions