PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionMoeWarTaskTab.lua
2022-12-26 14:06:01 +05:30

16 lines
No EOL
470 B
Lua

local XRedPointConditionMoeWarTaskTab = {}
local Events = nil
function XRedPointConditionMoeWarTaskTab.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_TASK_SYNC),
XRedPointEventElement.New(XEventId.EVENT_FINISH_TASK),
}
return Events
end
function XRedPointConditionMoeWarTaskTab.Check(type)
return XDataCenter.MoeWarManager.CheckTaskRedPoint(type,XMoeWarConfig.GetTaskGroupId(type)),type
end
return XRedPointConditionMoeWarTaskTab