1
0

EventHorizonSystem.cs 496 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="SharedEventHorizonSystem"/>.
  6. /// Primarily manages <see cref="EventHorizonComponent"/>s.
  7. /// Exists to make relevant signal handlers (ie: <see cref="SharedEventHorizonSystem.OnPreventCollide"/>) work on the client.
  8. /// </summary>
  9. public sealed class EventHorizonSystem : SharedEventHorizonSystem
  10. {}