5e0d58cfad
EN: 1.2.0.60 CN: 1.2.0.61 JP: 1.2.0.63 KR: 1.2.0.67
19 lines
532 B
Lua
19 lines
532 B
Lua
local StarTowerBuildBriefPanel = class("StarTowerBuildBriefPanel", BasePanel)
|
|
StarTowerBuildBriefPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "StarTowerBuild/StarTowerBuildBriefPanel.prefab",
|
|
sCtrlName = "Game.UI.StarTower.Build.StarTowerBuildBriefCtrl"
|
|
}
|
|
}
|
|
function StarTowerBuildBriefPanel:Awake()
|
|
end
|
|
function StarTowerBuildBriefPanel:OnEnable()
|
|
end
|
|
function StarTowerBuildBriefPanel:OnDisable()
|
|
end
|
|
function StarTowerBuildBriefPanel:OnDestroy()
|
|
end
|
|
function StarTowerBuildBriefPanel:OnRelease()
|
|
end
|
|
return StarTowerBuildBriefPanel
|