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