Files
StellaSora_DataLua/lua/game/ui/play_cookie_400004/cookiegamepanel.lua
T
SL1900 35c8d87e86 Update - 1.4.0.73
EN: 1.4.0.73
CN: 1.4.0.74
JP: 1.4.0.77
KR: 1.4.0.80
2025-12-25 19:00:00 +09:00

22 lines
521 B
Lua

local CookieGamePanel = class("CookieGamePanel", BasePanel)
CookieGamePanel._bIsMainPanel = true
CookieGamePanel._tbDefine = {
{
sPrefabPath = "Play_Cookie_400004/CookieGamePanel.prefab",
sCtrlName = "Game.UI.Play_Cookie_400004.CookieGameCtrl"
}
}
function CookieGamePanel:Awake()
end
function CookieGamePanel:OnEnable()
end
function CookieGamePanel:OnAfterEnter()
end
function CookieGamePanel:OnDisable()
end
function CookieGamePanel:OnDestroy()
end
function CookieGamePanel:OnRelease()
end
return CookieGamePanel