Files
SL1900 e0549005e1 Update - 1.9.0.103
EN: 1.9.0.103
CN: 1.9.0.104
JP: 1.9.0.106
KR: 1.9.0.108
2026-04-18 00:15:00 +09:00

22 lines
704 B
Lua

local BasePanel = require("GameCore.UI.BasePanel")
local ImportPreselectionPanel = class("ImportPreselectionPanel", BasePanel)
ImportPreselectionPanel._bIsMainPanel = false
ImportPreselectionPanel._sSortingLayerName = AllEnum.SortingLayerName.UI
ImportPreselectionPanel._tbDefine = {
{
sPrefabPath = "PotentialPreselection/ImportPreselectionPanel.prefab",
sCtrlName = "Game.UI.PotentialPreselection.ImportPreselectionCtrl"
}
}
function ImportPreselectionPanel:Awake()
end
function ImportPreselectionPanel:OnEnable()
end
function ImportPreselectionPanel:OnDisable()
end
function ImportPreselectionPanel:OnDestroy()
end
function ImportPreselectionPanel:OnRelease()
end
return ImportPreselectionPanel