KLGodDescentItemView.lua 846 B

12345678910111213141516171819202122
  1. ---@class KLGodDescentItemView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field Bg UIKmlLuaControl
  4. ---@field TitleImg UIKmlLuaControl
  5. ---@field TextDesc UIKmlLuaControl
  6. ---@field btn_Go UIKmlLuaControl
  7. ---@field scroll_Reward UIKmlLuaControl
  8. ---@field privilege_reward_list UIKmlLuaControl
  9. ---@field dateList_reward UIKmlLuaControl
  10. ---@field scroll_Monster UIKmlLuaControl
  11. ---@field layout2 UIKmlLuaControl
  12. local KLGodDescentItemView = {}
  13. setmetatable(KLGodDescentItemView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/outui/CrossServer/Item/KLGodDescent/KLGodDescentItemKml'
  15. KLGodDescentItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLGodDescentItemView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLGodDescentItemView.content)
  19. end
  20. return KLGodDescentItemView