This commit is contained in:
moonheart08
2022-02-04 17:14:50 -06:00
parent 1052854f2d
commit 93a553bfc2
2 changed files with 4 additions and 1 deletions

View File

@@ -1,11 +1,13 @@
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;
}