2023-04-10 15:37:03 +10:00
|
|
|
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))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class EdgeSpreaderComponent : Component
|
2023-04-10 15:37:03 +10:00
|
|
|
{
|
|
|
|
|
}
|