12345678910111213141516171819202122232425262728293031323334353637 |
- namespace ET
- {
- [ObjectSystem]
- public class UnitComponentAwakeSystem : AwakeSystem<UnitComponent>
- {
- protected override void Awake(UnitComponent self)
- {
- }
- }
-
- [ObjectSystem]
- public class UnitComponentDestroySystem : DestroySystem<UnitComponent>
- {
- protected override void Destroy(UnitComponent self)
- {
- }
- }
-
- public static class UnitComponentSystem
- {
- public static void Add(this UnitComponent self, Unit unit)
- {
- }
- public static Unit Get(this UnitComponent self, long id)
- {
- Unit unit = self.GetChild<Unit>(id);
- return unit;
- }
- public static void Remove(this UnitComponent self, long id)
- {
- Unit unit = self.GetChild<Unit>(id);
- unit?.Dispose();
- }
- }
- }
|