Fix edgespreaderprototype linter (#15265)

This commit is contained in:
metalgearsloth
2023-04-10 17:54:50 +10:00
committed by GitHub
parent 9cbd7a5e85
commit 360f16fee5
5 changed files with 7 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
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 class EdgeSpreaderPrototype : IPrototype
{
[IdDataField] public string ID { get; } = string.Empty;
}