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