46f967a584
EN: 1.6.0.84 CN: 1.6.0.87 JP: 1.6.0.88 KR: 1.6.0.91
21 lines
640 B
Lua
21 lines
640 B
Lua
local BasePanel = require("GameCore.UI.BasePanel")
|
|
local BreakOutLevelDetailPanel = class("BreakOutLevelDetailPanel", BasePanel)
|
|
BreakOutLevelDetailPanel._sUIResRootPath = "UI_Activity/"
|
|
BreakOutLevelDetailPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "30101/Play/BreakOutLevelDetailPanel.prefab",
|
|
sCtrlName = "Game.UI.Play_BreakOut_30101.BreakOutLevelDetailCtr"
|
|
}
|
|
}
|
|
function BreakOutLevelDetailPanel:Awake()
|
|
end
|
|
function BreakOutLevelDetailPanel:OnEnable()
|
|
end
|
|
function BreakOutLevelDetailPanel:OnDisable()
|
|
end
|
|
function BreakOutLevelDetailPanel:OnDestroy()
|
|
end
|
|
function BreakOutLevelDetailPanel:OnRelease()
|
|
end
|
|
return BreakOutLevelDetailPanel
|