using Robust.Shared.Prototypes; namespace Content.Shared.Spreader; /// /// Adds this node group to for tick updates. /// [Prototype] public sealed partial class EdgeSpreaderPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = string.Empty; [DataField(required:true)] public int UpdatesPerSecond; /// /// If true, this spreader can't spread onto spaced tiles like lattice. /// [DataField] public bool PreventSpreadOnSpaced = true; }