17 lines
481 B
C#
17 lines
481 B
C#
using Content.Server.Shuttles.Systems;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Server.Shuttles.Components;
|
|
|
|
/// <summary>
|
|
/// Added to a station that is available for arrivals shuttles.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(ArrivalsSystem))]
|
|
public sealed class StationArrivalsComponent : Component
|
|
{
|
|
[DataField("shuttle")]
|
|
public EntityUid Shuttle;
|
|
|
|
[DataField("shuttlePath")] public ResourcePath ShuttlePath = new("/Maps/Shuttles/arrivals.yml");
|
|
}
|