|
- local luzhouFunctions=ZPFramework.ZPFrameworkClassImprot("zp_base.luaScript.ZPFunctions")
-
- --获取小家是否可以看牌
- function luzhouFunctions.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
-
- return luzhouFunctions
|