1
0

CargoShuttleComponent.cs 508 B

12345678910111213141516
  1. using Robust.Shared.GameStates;
  2. using Robust.Shared.Prototypes;
  3. using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
  4. namespace Content.Shared.Cargo.Components;
  5. /// <summary>
  6. /// Present on cargo shuttles to provide metadata such as preventing spam calling.
  7. /// </summary>
  8. [RegisterComponent, NetworkedComponent, Access(typeof(SharedCargoSystem))]
  9. public sealed partial class CargoShuttleComponent : Component
  10. {
  11. /*
  12. * Still needed for drone console for now.
  13. */
  14. }