Files
tbd-station-14/Content.Server/Spreader/EdgeSpreaderComponent.cs
Leon Friedrich fc034dd9d1 Remove SpreaderNodeGroup (#20230)
* Remove SpreaderNodeGroup

* Fix airtight updates

* more smoke stuff

* more smoke fixes

* wtf is smoke code

* Fix merge

* Fix divide by zero
2023-10-01 16:56:41 -04:00

15 lines
438 B
C#

using Content.Shared.Spreader;
using Robust.Shared.Prototypes;
namespace Content.Server.Spreader;
/// <summary>
/// Entity capable of becoming cloning and replicating itself to adjacent edges. See <see cref="SpreaderSystem"/>
/// </summary>
[RegisterComponent, Access(typeof(SpreaderSystem))]
public sealed partial class EdgeSpreaderComponent : Component
{
[DataField(required:true)]
public ProtoId<EdgeSpreaderPrototype> Id;
}