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

15 lines
No EOL
460 B
Lua

local XRedPointConditionMovieAssembleMovieRed = {}
local Events = nil
function XRedPointConditionMovieAssembleMovieRed.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_MOVIE_ASSEMBLE_WATCH_MOVIE),
}
return Events
end
function XRedPointConditionMovieAssembleMovieRed.Check(movieId)
return XDataCenter.MovieAssembleManager.CheckMovieTmpRedPoint(movieId)
end
return XRedPointConditionMovieAssembleMovieRed