8c4bd41668
EN: 1.13.0.124 CN: 1.13.0.124 JP: 1.13.0.128 KR: 1.13.0.130
21 lines
534 B
Lua
21 lines
534 B
Lua
local SoldierTestEnterPanel = class("SoldierTestEnterPanel", BasePanel)
|
|
SoldierTestEnterPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "Soldier/SoldierTestEnterPanel.prefab",
|
|
sCtrlName = "Game.UI.Soldier.SoldierTestEnterCtrl"
|
|
}
|
|
}
|
|
function SoldierTestEnterPanel:Awake()
|
|
end
|
|
function SoldierTestEnterPanel:OnEnable()
|
|
end
|
|
function SoldierTestEnterPanel:OnAfterEnter()
|
|
end
|
|
function SoldierTestEnterPanel:OnDisable()
|
|
end
|
|
function SoldierTestEnterPanel:OnDestroy()
|
|
end
|
|
function SoldierTestEnterPanel:OnRelease()
|
|
end
|
|
return SoldierTestEnterPanel
|