mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* metal foam grenades * wow okay * meh * bruh * test * push (cherry picked from commit 21d0f85cc27823beda4cf4885f83f7452e468fb0)
20 lines
588 B
C#
20 lines
588 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Spreader;
|
|
|
|
/// <summary>
|
|
/// Adds this node group to <see cref="Content.Server.Spreader.SpreaderSystem"/> for tick updates.
|
|
/// </summary>
|
|
[Prototype("edgeSpreader")]
|
|
public sealed partial class EdgeSpreaderPrototype : IPrototype
|
|
{
|
|
[IdDataField] public string ID { get; } = string.Empty;
|
|
[DataField(required:true)] public int UpdatesPerSecond;
|
|
|
|
/// <summary>
|
|
/// If true, this spreader can't spread onto spaced tiles like lattice.
|
|
/// </summary>
|
|
[DataField]
|
|
public bool PreventSpreadOnSpaced = true;
|
|
}
|