11 lines
311 B
C#
11 lines
311 B
C#
namespace Content.Server.Spreader;
|
|
|
|
/// <summary>
|
|
/// Added to entities being considered for spreading via <see cref="SpreaderSystem"/>.
|
|
/// This needs to be manually added and removed.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(SpreaderSystem))]
|
|
public sealed class EdgeSpreaderComponent : Component
|
|
{
|
|
}
|