UIDefaultPanel.cs 287 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. namespace QFramework
  4. {
  5. public class UIDefaultPanel : UIPanel
  6. {
  7. protected override void OnInit(IUIData uiData = null)
  8. {
  9. }
  10. protected override void OnClose()
  11. {
  12. }
  13. }
  14. }