5e0d58cfad
EN: 1.2.0.60 CN: 1.2.0.61 JP: 1.2.0.63 KR: 1.2.0.67
22 lines
531 B
Lua
22 lines
531 B
Lua
local StarTowerBookPanel = class("StarTowerBookPanel", BasePanel)
|
|
StarTowerBookPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "StarTowerBook/StarTowerBookPanel.prefab",
|
|
sCtrlName = "Game.UI.StarTowerBook.StarTowerBookCtrl"
|
|
}
|
|
}
|
|
function StarTowerBookPanel:Awake()
|
|
self.nPanelType = 0
|
|
end
|
|
function StarTowerBookPanel:OnEnable()
|
|
end
|
|
function StarTowerBookPanel:OnAfterEnter()
|
|
end
|
|
function StarTowerBookPanel:OnDisable()
|
|
end
|
|
function StarTowerBookPanel:OnDestroy()
|
|
end
|
|
function StarTowerBookPanel:OnRelease()
|
|
end
|
|
return StarTowerBookPanel
|