Files
tbd-station-14/Content.Server/Station/Components/StationComponent.cs
2022-02-02 14:35:40 +11:00

12 lines
277 B
C#

using Content.Shared.Station;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
namespace Content.Server.Station;
[RegisterComponent, Friend(typeof(StationSystem))]
public class StationComponent : Component
{
public StationId Station = StationId.Invalid;
}