Files
tbd-station-14/Content.Shared/Station/Components/StationMemberComponent.cs
2025-08-09 13:13:14 -07:00

17 lines
471 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Station.Components;
/// <summary>
/// Indicates that a grid is a member of the given station.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class StationMemberComponent : Component
{
/// <summary>
/// Station that this grid is a part of.
/// </summary>
[DataField, AutoNetworkedField]
public EntityUid Station = EntityUid.Invalid;
}