forked from endernon/PGRData
17 lines
No EOL
482 B
Lua
17 lines
No EOL
482 B
Lua
----------------------------------------------------------------
|
|
--单个类型任务奖励检测
|
|
local XRedPointConditionTaskCourse = {}
|
|
local Events = nil
|
|
function XRedPointConditionTaskCourse.GetSubEvents()
|
|
Events = Events or
|
|
{
|
|
XRedPointEventElement.New(XEventId.EVENT_TASK_COURSE_REWAED),
|
|
}
|
|
return Events
|
|
end
|
|
|
|
function XRedPointConditionTaskCourse.Check()
|
|
return XDataCenter.TaskManager.CheckAllCourseCanGet()
|
|
end
|
|
|
|
return XRedPointConditionTaskCourse |