using Content.Server.Shuttles.Systems;
using Robust.Shared.Utility;
namespace Content.Server.Shuttles.Components;
///
/// Similar to except spawns the grid near to the station.
///
[RegisterComponent, Access(typeof(ShuttleSystem))]
public sealed partial class GridSpawnComponent : Component
{
[DataField("paths", required: true)] public List Paths = new();
}