2023-10-02 07:56:41 +11:00
|
|
|
using Content.Shared.Spreader;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
2023-04-10 15:37:03 +10:00
|
|
|
namespace Content.Server.Spreader;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2023-10-02 07:56:41 +11:00
|
|
|
/// Entity capable of becoming cloning and replicating itself to adjacent edges. See <see cref="SpreaderSystem"/>
|
2023-04-10 15:37:03 +10:00
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, Access(typeof(SpreaderSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class EdgeSpreaderComponent : Component
|
2023-04-10 15:37:03 +10:00
|
|
|
{
|
2023-10-02 07:56:41 +11:00
|
|
|
[DataField(required:true)]
|
|
|
|
|
public ProtoId<EdgeSpreaderPrototype> Id;
|
2023-04-10 15:37:03 +10:00
|
|
|
}
|