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 List Maps = new()
{
new("/Maps/CentralCommand/main.yml"),
new("/Maps/CentralCommand/harmony.yml")
};
///
/// Centcomm entity that was loaded.
///
[DataField]
public EntityUid? Entity;
[DataField]
public EntityUid? MapEntity;
}