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