KLPrivilegeBossOpenPanel.lua 595 B

123456789101112131415161718192021222324252627282930
  1. ---@class KLPrivilegeBossOpenPanel:UIKmlLuaPanelBase
  2. ---@field view KLPrivilegeBossOpenPanelView
  3. local KLPrivilegeBossOpenPanel = class(UIKmlLuaPanelBase)
  4. local this = KLPrivilegeBossOpenPanel
  5. ---创建时调用一次
  6. function this:Init()
  7. GUI:UIPanel_Open("dev/outui/ChallengeBoss/Panel/KLChallengeBoss/KLChallengeBossPanel",nil,nil,{monsterType = 5 })
  8. end
  9. ---创建或者刷新界面数据时调用
  10. function this:Refresh()
  11. end
  12. ---注册UI事件和服务器消息
  13. function this:RegistEvents()
  14. end
  15. function this:CloseOnclick()
  16. end
  17. function this:Close()
  18. end
  19. return this