KLUIPrivilegeBossPosItemView.lua 659 B

123456789101112131415
  1. ---@class KLUIPrivilegeBossPosItemView:UIKmlLuaViewBase
  2. ---@field btn UIKmlLuaControl
  3. ---@field level_select UIKmlLuaControl
  4. ---@field type_name UIKmlLuaControl
  5. local KLUIPrivilegeBossPosItemView = {}
  6. setmetatable(KLUIPrivilegeBossPosItemView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/outui/ChallengeBoss/Item/KLUIPrivilegeBossPosItem/KLUIPrivilegeBossPosItemKml'
  8. KLUIPrivilegeBossPosItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLUIPrivilegeBossPosItemView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLUIPrivilegeBossPosItemView.content)
  12. end
  13. return KLUIPrivilegeBossPosItemView