StationMemberComponent.cs 423 B

12345678910111213141516
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Station.Components;
  3. /// <summary>
  4. /// Indicates that a grid is a member of the given station.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class StationMemberComponent : Component
  8. {
  9. /// <summary>
  10. /// Station that this grid is a part of.
  11. /// </summary>
  12. [DataField]
  13. public EntityUid Station = EntityUid.Invalid;
  14. }