123456789101112 |
- ---@class KLUIPrivilegeBonusDetailPanelView:UIKmlLuaViewBase
- local KLUIPrivilegeBonusDetailPanelView = {}
- setmetatable(KLUIPrivilegeBonusDetailPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Privilege/Panel/KLUIPrivilegeBonusDetail/KLUIPrivilegeBonusDetailPanelKml'
- KLUIPrivilegeBonusDetailPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIPrivilegeBonusDetailPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIPrivilegeBonusDetailPanelView.content)
- end
- return KLUIPrivilegeBonusDetailPanelView
|