2023-04-10 15:37:03 +10:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
2023-04-10 17:54:50 +10:00
|
|
|
namespace Content.Shared.Spreader;
|
2023-04-10 15:37:03 +10:00
|
|
|
|
|
|
|
|
/// <summary>
|
2023-04-10 17:54:50 +10:00
|
|
|
/// Adds this node group to <see cref="Content.Server.Spreader.SpreaderSystem"/> for tick updates.
|
2023-04-10 15:37:03 +10:00
|
|
|
/// </summary>
|
|
|
|
|
[Prototype("edgeSpreader")]
|
|
|
|
|
public sealed class EdgeSpreaderPrototype : IPrototype
|
|
|
|
|
{
|
|
|
|
|
[IdDataField] public string ID { get; } = string.Empty;
|
|
|
|
|
}
|