Files
crystall-punk-14/Content.Shared/Cargo/Components/CargoShuttleComponent.cs

17 lines
508 B
C#
Raw Permalink Normal View History

2023-05-31 11:13:02 +10:00
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
2022-06-23 14:36:47 +10:00
namespace Content.Shared.Cargo.Components;
/// <summary>
/// Present on cargo shuttles to provide metadata such as preventing spam calling.
/// </summary>
2023-05-31 11:13:02 +10:00
[RegisterComponent, NetworkedComponent, Access(typeof(SharedCargoSystem))]
public sealed partial class CargoShuttleComponent : Component
2022-06-23 14:36:47 +10:00
{
/*
* Still needed for drone console for now.
*/
2022-06-23 14:36:47 +10:00
}