5e0d58cfad
EN: 1.2.0.60 CN: 1.2.0.61 JP: 1.2.0.63 KR: 1.2.0.67
20 lines
494 B
Lua
20 lines
494 B
Lua
local GachaPreviewPanel = class("GachaPreviewPanel", BasePanel)
|
|
GachaPreviewPanel._bIsMainPanel = false
|
|
GachaPreviewPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "GachaEx/GachaCharInfoPanel.prefab",
|
|
sCtrlName = "Game.UI.GachaEx.GachaPreview.GachaPreviewCtrl"
|
|
}
|
|
}
|
|
function GachaPreviewPanel:Awake()
|
|
end
|
|
function GachaPreviewPanel:OnEnable()
|
|
end
|
|
function GachaPreviewPanel:OnDisable()
|
|
end
|
|
function GachaPreviewPanel:OnDestroy()
|
|
end
|
|
function GachaPreviewPanel:OnRelease()
|
|
end
|
|
return GachaPreviewPanel
|