5e0d58cfad
EN: 1.2.0.60 CN: 1.2.0.61 JP: 1.2.0.63 KR: 1.2.0.67
22 lines
545 B
Lua
22 lines
545 B
Lua
local PerkTipsPanel = class("PerkTipsPanel", BasePanel)
|
|
PerkTipsPanel._bIsMainPanel = false
|
|
PerkTipsPanel._bAddToBackHistory = false
|
|
PerkTipsPanel._sSortingLayerName = AllEnum.SortingLayerName.UI_Top
|
|
PerkTipsPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "CommonTipsEx/PerkTips.prefab",
|
|
sCtrlName = "Game.UI.CommonTipsEx.PerkTipsCtrl"
|
|
}
|
|
}
|
|
function PerkTipsPanel:Awake()
|
|
end
|
|
function PerkTipsPanel:OnEnable()
|
|
end
|
|
function PerkTipsPanel:OnDisable()
|
|
end
|
|
function PerkTipsPanel:OnDestroy()
|
|
end
|
|
function PerkTipsPanel:OnRelease()
|
|
end
|
|
return PerkTipsPanel
|