5e0d58cfad
EN: 1.2.0.60 CN: 1.2.0.61 JP: 1.2.0.63 KR: 1.2.0.67
20 lines
497 B
Lua
20 lines
497 B
Lua
local BasePanel = require("GameCore.UI.BasePanel")
|
|
local StoryChapterPanel = class("StoryChapterPanel", BasePanel)
|
|
StoryChapterPanel._tbDefine = {
|
|
{
|
|
sPrefabPath = "MainlineEx/StoryChapterPanel.prefab",
|
|
sCtrlName = "Game.UI.MainlineEx.StoryChapterCtrl"
|
|
}
|
|
}
|
|
function StoryChapterPanel:Awake()
|
|
end
|
|
function StoryChapterPanel:OnEnable()
|
|
end
|
|
function StoryChapterPanel:OnDisable()
|
|
end
|
|
function StoryChapterPanel:OnDestroy()
|
|
end
|
|
function StoryChapterPanel:OnRelease()
|
|
end
|
|
return StoryChapterPanel
|