ShuttleDestinationCoordinatesComponent.cs 553 B

123456789101112131415
  1. namespace Content.Shared.Shuttles.Components;
  2. using Robust.Shared.GameStates;
  3. /// <summary>
  4. /// Enables a shuttle to travel to a destination with an item inserted into its console
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
  7. public sealed partial class ShuttleDestinationCoordinatesComponent : Component
  8. {
  9. /// <summary>
  10. /// Uid for entity containing the FTLDestination component
  11. /// </summary>
  12. [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField]
  13. public EntityUid? Destination;
  14. }