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