Files
crystall-punk-14/Content.Shared/Spreader/EdgeSpreaderPrototype.cs

14 lines
412 B
C#
Raw Normal View History

2023-04-10 15:37:03 +10:00
using Robust.Shared.Prototypes;
namespace Content.Shared.Spreader;
2023-04-10 15:37:03 +10:00
/// <summary>
/// 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 partial class EdgeSpreaderPrototype : IPrototype
2023-04-10 15:37:03 +10:00
{
[IdDataField] public string ID { get; } = string.Empty;
[DataField(required:true)] public int UpdatesPerSecond;
2023-04-10 15:37:03 +10:00
}