46f967a584
EN: 1.6.0.84 CN: 1.6.0.87 JP: 1.6.0.88 KR: 1.6.0.91
23 lines
667 B
Lua
23 lines
667 B
Lua
local PenguinCardQuestPanel = class("PenguinCardQuestPanel", BasePanel)
|
|
PenguinCardQuestPanel._sSortingLayerName = AllEnum.SortingLayerName.UI
|
|
PenguinCardQuestPanel._bIsMainPanel = false
|
|
PenguinCardQuestPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "Play_PenguinCard/PenguinCardQuestPanel.prefab",
|
|
sCtrlName = "Game.UI.Play_PenguinCard.PenguinCardQuestCtrl"
|
|
}
|
|
}
|
|
function PenguinCardQuestPanel:Awake()
|
|
end
|
|
function PenguinCardQuestPanel:OnEnable()
|
|
end
|
|
function PenguinCardQuestPanel:OnAfterEnter()
|
|
end
|
|
function PenguinCardQuestPanel:OnDisable()
|
|
end
|
|
function PenguinCardQuestPanel:OnDestroy()
|
|
end
|
|
function PenguinCardQuestPanel:OnRelease()
|
|
end
|
|
return PenguinCardQuestPanel
|