5e0d58cfad
EN: 1.2.0.60 CN: 1.2.0.61 JP: 1.2.0.63 KR: 1.2.0.67
19 lines
484 B
Lua
19 lines
484 B
Lua
local PopupTipsPanel = class("PopupTipsPanel", BasePanel)
|
|
PopupTipsPanel._sSortingLayerName = AllEnum.SortingLayerName.UI_Top
|
|
PopupTipsPanel._bAddToBackHistory = false
|
|
PopupTipsPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "PopupTips/PopupTipsPanel.prefab",
|
|
sCtrlName = "Game.UI.MessageBoxEx.PopupTipsCtrl"
|
|
}
|
|
}
|
|
function PopupTipsPanel:Awake()
|
|
end
|
|
function PopupTipsPanel:OnEnable()
|
|
end
|
|
function PopupTipsPanel:OnDisable()
|
|
end
|
|
function PopupTipsPanel:OnDestroy()
|
|
end
|
|
return PopupTipsPanel
|