MainThreadUpdateRegister.cs 513 B

1234567891011121314151617181920212223242526
  1. using System;
  2. namespace XGame.Framework.ThreadScheduler
  3. {
  4. public static class MainThreadUpdateRegister
  5. {
  6. private static Action<int> _update;
  7. public static event Action<int> update
  8. {
  9. add
  10. {
  11. _update += value;
  12. }
  13. remove
  14. {
  15. _update -= value;
  16. }
  17. }
  18. public static void Update(int millisecond)
  19. {
  20. _update.SafeInvoke(millisecond);
  21. }
  22. }
  23. }