RedDotCom.cs 574 B

1234567891011121314151617181920212223242526272829303132
  1. namespace Fort23.Mono
  2. {
  3. [UIBinding(prefab = "RedDotCom")]
  4. public partial class RedDotCom : UIComponent
  5. {
  6. private void Init()
  7. {
  8. }
  9. public override void AddEvent()
  10. {
  11. }
  12. public override void DelEvent()
  13. {
  14. }
  15. public void CustomInit(int redDotConfigID)
  16. {
  17. RedDotWidget.CustomInit(redDotConfigID);
  18. }
  19. public override void AddButtonEvent()
  20. {
  21. }
  22. public override void Dispose()
  23. {
  24. base.Dispose();
  25. }
  26. }
  27. }