Files
tbd-station-14/Content.Server/Station/Components/StationSpawningComponent.cs
Vera Aguilera Puerto c5f7c61041 Fix some friend access violations by allowing others access. (#8594)
Rename Friend attribute to Access attribute.
Updates submodule to v0.21.0.0 as well.
2022-06-07 11:30:27 +02: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, Access(typeof(StationSpawningSystem))]
public sealed class StationSpawningComponent : Component
{
}