KLGodCountryPanelView.lua 648 B

1234567891011121314151617
  1. ---@class KLGodCountryPanellView:UIKmlLuaViewBase
  2. ---@field root_panel UIKmlLuaControl
  3. ---@field trade_bg UIKmlLuaControl
  4. ---@field img_interface UIKmlLuaControl
  5. ---@field btn_close UIKmlLuaControl
  6. local KLGodCountryPanellView = {}
  7. setmetatable( KLGodCountryPanellView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/outui/CrossServer/Panel/KLGodCountry/KLGodCountryPanelKml'
  9. KLGodCountryPanellView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLGodCountryPanellView:Init(parent)
  12. self:InitRoot(parent,kmlPath, KLGodCountryPanellView.content)
  13. end
  14. return KLGodCountryPanellView