* Arrivals * More arrivals and shitty uhh preload * cvar * a * clockin + maps * shitter prevention * Placement * a * cvar for tests and dev * weh
16 lines
410 B
C#
16 lines
410 B
C#
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Server.Shuttles.Components;
|
|
|
|
/// <summary>
|
|
/// Added to a station that is available for arrivals shuttles.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed class StationArrivalsComponent : Component
|
|
{
|
|
[DataField("shuttle")]
|
|
public EntityUid Shuttle;
|
|
|
|
[DataField("shuttlePath")] public ResourcePath ShuttlePath = new("/Maps/Shuttles/arrivals.yml");
|
|
}
|