RobotCaseComponentSystem.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ET.Server
  4. {
  5. [FriendOf(typeof(RobotCaseComponent))]
  6. public static class RobotCaseComponentSystem
  7. {
  8. [ObjectSystem]
  9. public class RobotCaseComponentAwakeSystem: AwakeSystem<RobotCaseComponent>
  10. {
  11. protected override void Awake(RobotCaseComponent self)
  12. {
  13. RobotCaseComponent.Instance = self;
  14. }
  15. }
  16. [ObjectSystem]
  17. public class RobotCaseComponentDestroySystem: DestroySystem<RobotCaseComponent>
  18. {
  19. protected override void Destroy(RobotCaseComponent self)
  20. {
  21. RobotCaseComponent.Instance = null;
  22. }
  23. }
  24. public static int GetN(this RobotCaseComponent self)
  25. {
  26. return ++self.N;
  27. }
  28. public static async ETTask<RobotCase> New(this RobotCaseComponent self)
  29. {
  30. await ETTask.CompletedTask;
  31. RobotCase robotCase = self.AddChild<RobotCase>();
  32. return robotCase;
  33. }
  34. }
  35. }