1234567891011121314 |
- ---@class KLWolfSoulFortressPanelView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field textTime UIKmlLuaControl
- local KLWolfSoulFortressPanelView = {}
- setmetatable(KLWolfSoulFortressPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLWolfSoulFortress/KLWolfSoulFortressPanelKml'
- KLWolfSoulFortressPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLWolfSoulFortressPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLWolfSoulFortressPanelView.content)
- end
- return KLWolfSoulFortressPanelView
|