using Robust.Shared.Utility; using Robust.Shared.Serialization.TypeSerializers.Implementations; namespace Content.Server.Station; public sealed partial class StationConfig { /// /// Emergency shuttle map path for this station. /// [DataField("emergencyShuttlePath", customTypeSerializer: typeof(ResourcePathSerializer))] public ResourcePath EmergencyShuttlePath { get; set; } = new("/Maps/Shuttles/emergency.yml"); }