2023-07-14 19:35:33 +00:00
|
|
|
-- 红点条件检测器
|
|
|
|
--默认
|
|
|
|
local XRedPointConditionAssign = {}
|
|
|
|
|
|
|
|
local Events = nil
|
|
|
|
function XRedPointConditionAssign.GetSubEvents()
|
|
|
|
Events = Events or
|
|
|
|
{
|
|
|
|
XRedPointEventElement.New(XEventId.EVENET_ASSIGN_CAN_REWARD),
|
|
|
|
}
|
|
|
|
return Events
|
|
|
|
end
|
|
|
|
--检测
|
|
|
|
function XRedPointConditionAssign.Check()
|
2024-09-01 20:49:41 +00:00
|
|
|
return XDataCenter.FubenAssignManager.CheckIsShowRedPoint()
|
2023-07-14 19:35:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return XRedPointConditionAssign
|