13 lines
519 B
C#
13 lines
519 B
C#
using Content.Shared.Singularity.EntitySystems;
|
|
using Content.Shared.Singularity.Components;
|
|
|
|
namespace Content.Client.Singularity.Systems;
|
|
|
|
/// <summary>
|
|
/// The client-side version of <see cref="SharedSingularityGeneratorSystem"/>.
|
|
/// Manages <see cref="SingularityGeneratorComponent"/>s.
|
|
/// Exists to make relevant signal handlers (ie: <see cref="SharedSingularityGeneratorSystem.OnEmagged"/>) work on the client.
|
|
/// </summary>
|
|
public sealed class SingularityGeneratorSystem : SharedSingularityGeneratorSystem
|
|
{}
|