Files
tbd-station-14/Content.Server/Station/Components/StationSpawningComponent.cs
2022-05-13 17:59:03 +10:00

12 lines
314 B
C#

using Content.Server.Station.Systems;
namespace Content.Server.Station.Components;
/// <summary>
/// Controls spawning on the given station, tracking spawners present on it.
/// </summary>
[RegisterComponent, Friend(typeof(StationSpawningSystem))]
public sealed class StationSpawningComponent : Component
{
}