using Content.Server._DV.Station.Systems;
using Robust.Shared.Utility;
namespace Content.Server._DV.Station.Components;
///
/// Spawns the non-emergency shuttle Central Command for a station on the same map as the
///
[RegisterComponent, Access(typeof(StationSecondaryCentcommSystem))]
public sealed partial class StationSecondaryCentcommComponent : Component
{
///
/// The grid to load as secondary Central Command
///
[DataField]
public ResPath Path = new("/Maps/_DV/centcomm.yml");
///
/// Minimum distance to load the grid at.
///
[DataField]
public float MinRange = 1000f;
///
/// Maximum distance to load the grid at.
///
[DataField]
public float MaxRange = 1200f;
}