using Robust.Shared.Map; using Robust.Shared.Utility; namespace Content.Server.Shuttles.Components; /// /// Spawns Central Command (emergency destination) for a station. /// [RegisterComponent] public sealed partial class StationCentcommComponent : Component { /// /// Crude shuttle offset spawning. /// [DataField] public float ShuttleIndex; [DataField] public ResPath Map = new("/Maps/centcomm.yml"); /// /// Centcomm entity that was loaded. /// [DataField] public EntityUid? Entity; [DataField] public EntityUid? MapEntity; }