KLUIHurtExpPanelView.lua 497 B

12345678910111213
  1. ---@class KLUIHurtExpPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. local KLUIHurtExpPanelView = {}
  4. setmetatable(KLUIHurtExpPanelView,UIKmlLuaViewBase)
  5. local kmlPath = 'dev/ui/MainUI/Panel/KLUIHurtExp/KLUIHurtExpPanelKml'
  6. KLUIHurtExpPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  7. ---@param parent UIKmlLuaControl
  8. function KLUIHurtExpPanelView:Init(parent)
  9. self:InitRoot(parent,kmlPath,KLUIHurtExpPanelView.content)
  10. end
  11. return KLUIHurtExpPanelView