5e0d58cfad
EN: 1.2.0.60 CN: 1.2.0.61 JP: 1.2.0.63 KR: 1.2.0.67
22 lines
497 B
Lua
22 lines
497 B
Lua
local LevelMenuPanel = class("LevelMenuPanel", BasePanel)
|
|
LevelMenuPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "LevelMenuEx/LevelMenuPanel.prefab",
|
|
sCtrlName = "Game.UI.LevelMenuEx.LevelMenuCtrl"
|
|
}
|
|
}
|
|
function LevelMenuPanel:Awake()
|
|
self.nCurStarTowerGroupId = nil
|
|
end
|
|
function LevelMenuPanel:OnEnable()
|
|
end
|
|
function LevelMenuPanel:OnDisable()
|
|
end
|
|
function LevelMenuPanel:OnDestroy()
|
|
end
|
|
function LevelMenuPanel:GetAniState()
|
|
end
|
|
function LevelMenuPanel:SetAniState(bPlay)
|
|
end
|
|
return LevelMenuPanel
|