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("shuttleIndex")]
public float ShuttleIndex;
[DataField("map")]
public ResPath Map = new("/Maps/centcomm.yml");
///
/// Centcomm entity that was loaded.
///
[DataField("entity")]
public EntityUid Entity = EntityUid.Invalid;
public MapId MapId = MapId.Nullspace;
}