mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
26 lines
600 B
C#
26 lines
600 B
C#
using Content.Shared.DoAfter;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Power.Generator;
|
|
|
|
/// <summary>
|
|
/// Shared logic for portable generators.
|
|
/// </summary>
|
|
/// <seealso cref="PortableGeneratorComponent"/>
|
|
public abstract class SharedPortableGeneratorSystem : EntitySystem
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Used to start a portable generator.
|
|
/// </summary>
|
|
/// <seealso cref="SharedPortableGeneratorSystem"/>
|
|
[Serializable, NetSerializable]
|
|
public sealed partial class GeneratorStartedEvent : DoAfterEvent
|
|
{
|
|
public override DoAfterEvent Clone()
|
|
{
|
|
return this;
|
|
}
|
|
}
|