forked from endernon/PGRData
25 lines
646 B
Lua
25 lines
646 B
Lua
|
-- Author: wujie
|
||
|
-- Note: 回归活动红点
|
||
|
local XRedPointConditionRegression = {}
|
||
|
local Events = nil
|
||
|
local SubCondition = nil
|
||
|
|
||
|
function XRedPointConditionRegression.GetSubEvents()
|
||
|
Events = Events or {
|
||
|
XRedPointEventElement.New(XEventId.EVENT_REGRESSION_OPEN_STATUS_UPDATE),
|
||
|
}
|
||
|
return Events
|
||
|
end
|
||
|
|
||
|
function XRedPointConditionRegression.GetSubConditions()
|
||
|
SubCondition = SubCondition or {
|
||
|
XRedPointConditions.Types.CONDITION_REGRESSION_TASK,
|
||
|
}
|
||
|
return SubCondition
|
||
|
end
|
||
|
|
||
|
function XRedPointConditionRegression.Check()
|
||
|
return XRedPointConditionRegressionTask.Check()
|
||
|
end
|
||
|
|
||
|
return XRedPointConditionRegression
|