HeroUpTxtEft.cs 665 B

1234567891011121314151617181920212223242526272829
  1. using Common.Utility.CombatTimer;
  2. using Fort23.UTool;
  3. namespace Fort23.Mono
  4. {
  5. [UIBinding(prefab = "HeroUpTxtEft" )]
  6. public partial class HeroUpTxtEft : UIComponent
  7. {
  8. private void Init()
  9. {
  10. CombatTimerManager.Instance.AddTimer(1f, delegate
  11. {
  12. UIManager.Instance.DormancyGComponent(this);
  13. LogTool.Log("Recycle:" + poolObjName);
  14. });
  15. // UIManager.Instance.
  16. }
  17. public override void AddEvent()
  18. {
  19. }
  20. public override void DelEvent()
  21. {
  22. }
  23. public override void AddButtonEvent()
  24. {
  25. }
  26. }
  27. }