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

16 lines
No EOL
431 B
Lua

----------------------------------------------------------------
local XRedPointConditionPurchaseLB = {}
local Events = nil
function XRedPointConditionPurchaseLB.GetSubEvents()
Events = Events or {
XRedPointEventElement.New(XEventId.EVENT_LB_UPDATE),
}
return Events
end
function XRedPointConditionPurchaseLB.Check()
return XDataCenter.PurchaseManager.LBRedPoint()
end
return XRedPointConditionPurchaseLB