Files
StellaSora_DataLua/lua/game/ui/play_cookie_400006/cookiegamepanel.lua
T
SL1900 46f967a584 Update - 1.6.0.84
EN: 1.6.0.84
CN: 1.6.0.87
JP: 1.6.0.88
KR: 1.6.0.91
2026-02-04 13:00:00 +09:00

22 lines
521 B
Lua

local CookieGamePanel = class("CookieGamePanel", BasePanel)
CookieGamePanel._bIsMainPanel = true
CookieGamePanel._tbDefine = {
{
sPrefabPath = "Play_Cookie_400006/CookieGamePanel.prefab",
sCtrlName = "Game.UI.Play_Cookie_400006.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