5e0d58cfad
EN: 1.2.0.60 CN: 1.2.0.61 JP: 1.2.0.63 KR: 1.2.0.67
22 lines
513 B
Lua
22 lines
513 B
Lua
local ConsumablePanel = class("ConsumablePanel", BasePanel)
|
|
ConsumablePanel._bIsMainPanel = false
|
|
ConsumablePanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "ConsumablesPanel/ConsumablesPanel.prefab",
|
|
sCtrlName = "Game.UI.Consumable.ConsumableCtrl"
|
|
}
|
|
}
|
|
function ConsumablePanel:Awake()
|
|
end
|
|
function ConsumablePanel:OnEnable()
|
|
end
|
|
function ConsumablePanel:OnAfterEnter()
|
|
end
|
|
function ConsumablePanel:OnDisable()
|
|
end
|
|
function ConsumablePanel:OnDestroy()
|
|
end
|
|
function ConsumablePanel:OnRelease()
|
|
end
|
|
return ConsumablePanel
|