5e0d58cfad
EN: 1.2.0.60 CN: 1.2.0.61 JP: 1.2.0.63 KR: 1.2.0.67
17 lines
444 B
Lua
17 lines
444 B
Lua
local CharDevelopmentPanel = class("CharDevelopmentPanel", BasePanel)
|
|
CharDevelopmentPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "CharacterInfoEx/CharDevelopmentPanel.prefab",
|
|
sCtrlName = "Game.UI.CharacterInfoEx.CharDevelopmentPanel"
|
|
}
|
|
}
|
|
function CharDevelopmentPanel:Awake()
|
|
end
|
|
function CharDevelopmentPanel:OnEnable()
|
|
end
|
|
function CharDevelopmentPanel:OnDisable()
|
|
end
|
|
function CharDevelopmentPanel:OnDestroy()
|
|
end
|
|
return CharDevelopmentPanel
|