11 lines
239 B
Lua
11 lines
239 B
Lua
|
|
||
|
local XRedPointConditionRpgMakerGame = {}
|
||
|
|
||
|
function XRedPointConditionRpgMakerGame.Check()
|
||
|
if XDataCenter.RpgMakerGameManager.CheckRedPoint() then
|
||
|
return true
|
||
|
end
|
||
|
return false
|
||
|
end
|
||
|
|
||
|
return XRedPointConditionRpgMakerGame
|