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")]
|
2023-11-01 19:56:23 -07:00
|
|
|
public sealed partial class EdgeSpreaderPrototype : IPrototype
|
2023-04-10 15:37:03 +10:00
|
|
|
{
|
|
|
|
|
[IdDataField] public string ID { get; } = string.Empty;
|
2023-10-02 07:56:41 +11:00
|
|
|
[DataField(required:true)] public int UpdatesPerSecond;
|
2023-04-10 15:37:03 +10:00
|
|
|
}
|