1234567891011121314151617 |
- ---@class KLRedFortCounterPanelView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field killCount UIKmlLuaControl
- ---@field textKillCount UIKmlLuaControl
- ---@field dieCount UIKmlLuaControl
- ---@field textDieCount UIKmlLuaControl
- local KLRedFortCounterPanelView = {}
- setmetatable(KLRedFortCounterPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLRedFortCounter/KLRedFortCounterPanelKml'
- KLRedFortCounterPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRedFortCounterPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRedFortCounterPanelView.content)
- end
- return KLRedFortCounterPanelView
|