forked from endernon/PGRData
16 lines
431 B
Lua
16 lines
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
|