KLShapeShiftCardShopItemView.lua 770 B

123456789101112131415161718
  1. ---@class KLShapeShiftCardShopItemView:UIKmlLuaViewBase
  2. ---@field img_item_click UIKmlLuaControl
  3. ---@field item_cost UIKmlLuaControl
  4. ---@field text_cost UIKmlLuaControl
  5. ---@field item_is UIKmlLuaControl
  6. ---@field item_tips UIKmlLuaControl
  7. ---@field text_name UIKmlLuaControl
  8. local KLShapeShiftCardShopItemView = {}
  9. setmetatable(KLShapeShiftCardShopItemView,UIKmlLuaViewBase)
  10. local kmlPath = 'dev/outui/ShapeShiftCard/Item/KLShapeShiftCardShop/KLShapeShiftCardShopItemKml'
  11. KLShapeShiftCardShopItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  12. ---@param parent UIKmlLuaControl
  13. function KLShapeShiftCardShopItemView:Init(parent)
  14. self:InitRoot(parent,kmlPath,KLShapeShiftCardShopItemView.content)
  15. end
  16. return KLShapeShiftCardShopItemView