KLUIExpMessagePanelView.lua 502 B

123456789101112
  1. ---@class KLUIExpMessagePanelView:UIKmlLuaViewBase
  2. local KLUIExpMessagePanelView = {}
  3. setmetatable(KLUIExpMessagePanelView,UIKmlLuaViewBase)
  4. local kmlPath = 'dev/outui/ExpMessage/Panel/KLUIExpMessage/KLUIExpMessagePanelKml'
  5. KLUIExpMessagePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  6. ---@param parent UIKmlLuaControl
  7. function KLUIExpMessagePanelView:Init(parent)
  8. self:InitRoot(parent,kmlPath,KLUIExpMessagePanelView.content)
  9. end
  10. return KLUIExpMessagePanelView