12345678910111213 |
- ---@class KLUIHurtExpPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- local KLUIHurtExpPanelView = {}
- setmetatable(KLUIHurtExpPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/MainUI/Panel/KLUIHurtExp/KLUIHurtExpPanelKml'
- KLUIHurtExpPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIHurtExpPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIHurtExpPanelView.content)
- end
- return KLUIHurtExpPanelView
|