miduo_client/Assets/ManagedResources/~Lua/Modules/Guild/RedPacketView/GuildRedPacketManager.lua

21 lines
394 B
Lua

GuildRedPacketManager = {}
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
return this