1
0

SingularityGeneratorSystem.cs 519 B

123456789101112
  1. using Content.Shared.Singularity.EntitySystems;
  2. using Content.Shared.Singularity.Components;
  3. namespace Content.Client.Singularity.Systems;
  4. /// <summary>
  5. /// The client-side version of <see cref="SharedSingularityGeneratorSystem"/>.
  6. /// Manages <see cref="SingularityGeneratorComponent"/>s.
  7. /// Exists to make relevant signal handlers (ie: <see cref="SharedSingularityGeneratorSystem.OnEmagged"/>) work on the client.
  8. /// </summary>
  9. public sealed class SingularityGeneratorSystem : SharedSingularityGeneratorSystem
  10. {}