KLTaskPanel.lua 377 B

12345678910111213141516171819202122
  1. ---@class KLTaskPanel:UIKmlLuaPanelBase
  2. ---@field view KLTaskPanelView
  3. local KLTaskPanel = class(UIKmlLuaPanelBase)
  4. local this =KLTaskPanel
  5. ---创建时调用一次
  6. function this:Init()
  7. end
  8. ---注册UI事件和服务器消息
  9. function this:RegistEvents()
  10. end
  11. ---创建或者刷新界面数据时调用
  12. function this:Refresh()
  13. end
  14. function this:Close()
  15. end
  16. return this