e0549005e1
EN: 1.9.0.103 CN: 1.9.0.104 JP: 1.9.0.106 KR: 1.9.0.108
17 lines
519 B
Lua
17 lines
519 B
Lua
local PotentialPreselectionPanel = class("PotentialPreselectionPanel", BasePanel)
|
|
PotentialPreselectionPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "PotentialPreselection/PotentialPreselectionListPanel.prefab",
|
|
sCtrlName = "Game.UI.PotentialPreselection.PotentialPreselectionCtrl"
|
|
}
|
|
}
|
|
function PotentialPreselectionPanel:Awake()
|
|
end
|
|
function PotentialPreselectionPanel:OnEnable()
|
|
end
|
|
function PotentialPreselectionPanel:OnDisable()
|
|
end
|
|
function PotentialPreselectionPanel:OnDestroy()
|
|
end
|
|
return PotentialPreselectionPanel
|