Portable Generator Rework (#19302)
This commit is contained in:
committed by
GitHub
parent
50828363fe
commit
bf16698efa
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user