KLRedFortCounterPanelView.lua 699 B

1234567891011121314151617
  1. ---@class KLRedFortCounterPanelView:UIKmlLuaViewBase
  2. ---@field root UIKmlLuaControl
  3. ---@field killCount UIKmlLuaControl
  4. ---@field textKillCount UIKmlLuaControl
  5. ---@field dieCount UIKmlLuaControl
  6. ---@field textDieCount UIKmlLuaControl
  7. local KLRedFortCounterPanelView = {}
  8. setmetatable(KLRedFortCounterPanelView,UIKmlLuaViewBase)
  9. local kmlPath = 'dev/outui/Activity/Panel/KLRedFortCounter/KLRedFortCounterPanelKml'
  10. KLRedFortCounterPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  11. ---@param parent UIKmlLuaControl
  12. function KLRedFortCounterPanelView:Init(parent)
  13. self:InitRoot(parent,kmlPath,KLRedFortCounterPanelView.content)
  14. end
  15. return KLRedFortCounterPanelView