2020-08-25 15:46:38 +08:00
|
|
|
|
GuildRedPacketManager = {}
|
2020-05-09 13:31:21 +08:00
|
|
|
|
local this = GuildRedPacketManager
|
|
|
|
|
|
|
|
|
|
-- 默认未检查公会红包
|
|
|
|
|
this.isCheck=false
|
|
|
|
|
|
|
|
|
|
function this.Initialize()
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- 检查公会红包红点
|
|
|
|
|
function this.CheckGuildRedPacketRedPoint()
|
|
|
|
|
-- Log("<color=yellow>"..tostring(this.isCheck).."</color>")
|
|
|
|
|
if this.isCheck then
|
|
|
|
|
return this.isCheck
|
|
|
|
|
else
|
|
|
|
|
return false
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-06-23 18:36:24 +08:00
|
|
|
|
return this
|