Files
wwdpublic/Content.Server/Spreader/EdgeSpreaderComponent.cs
Leon Friedrich ff872bec6a 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-08 19:52:10 +02: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;
}