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"), WWDP edit, and now we have GREAT HUB
/// new("/Maps/CentralCommand/harmony.yml") WWDP edit, no more CentCom rotation
new("/Maps/_White/CentralCommand/hub.yml"), // WD EDIT
};
///
/// Centcomm entity that was loaded.
///
[DataField]
public EntityUid? Entity;
[DataField]
public EntityUid? MapEntity;
}