Files
StellaSora_DataLua/lua/game/ui/activitytheme/30102/breakoutthemepanel.lua
T
SL1900 eafd8f4088 Update - 1.9.0.107
EN: 1.9.0.107
CN: 1.9.0.108
JP: 1.9.0.112
KR: 1.9.0.112
2026-05-14 16:00:00 +09:00

21 lines
564 B
Lua

local BasePanel = require("GameCore.UI.BasePanel")
local BreakOutThemePanel = class("BreakOutThemePanel", BasePanel)
BreakOutThemePanel._sUIResRootPath = "UI_Activity/"
BreakOutThemePanel._tbDefine = {
{
sPrefabPath = "30102/BreakOutThemePanel.prefab",
sCtrlName = "Game.UI.ActivityTheme.30102.BreakOutThemeCtrl"
}
}
function BreakOutThemePanel:Awake()
end
function BreakOutThemePanel:OnEnable()
end
function BreakOutThemePanel:OnDisable()
end
function BreakOutThemePanel:OnDestroy()
end
function BreakOutThemePanel:OnRelease()
end
return BreakOutThemePanel