Files
tbd-station-14/Content.Server/Station/Components/StationComponent.cs
2022-02-16 18:23:23 +11:00

14 lines
339 B
C#

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