KLGodDescentMonsterItemView.lua 752 B

123456789101112131415161718
  1. ---@class KLGodDescentMonsterItemView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field img_info UIKmlLuaControl
  4. ---@field img_kill UIKmlLuaControl
  5. ---@field txt_Name UIKmlLuaControl
  6. ---@field txt_Status UIKmlLuaControl
  7. ---@field txt_Status2 UIKmlLuaControl
  8. local KLGodDescentMonsterItemView = {}
  9. setmetatable(KLGodDescentMonsterItemView,UIKmlLuaViewBase)
  10. local kmlPath = 'dev/outui/CrossServer/Item/KLGodDescentMonster/KLGodDescentMonsterItemKml'
  11. KLGodDescentMonsterItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  12. ---@param parent UIKmlLuaControl
  13. function KLGodDescentMonsterItemView:Init(parent)
  14. self:InitRoot(parent,kmlPath,KLGodDescentMonsterItemView.content)
  15. end
  16. return KLGodDescentMonsterItemView