Files
tbd-station-14/Content.Server/Station/Components/StationComponent.cs
moonheart08 93a553bfc2 Fuck.
2022-02-04 17:14:50 -06:00

14 lines
332 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 class StationComponent : Component
{
[ViewVariables]
public StationId Station = StationId.Invalid;
}