14 lines
419 B
C#
14 lines
419 B
C#
using Content.Server.Shuttles.Systems;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Server.Shuttles.Components;
|
|
|
|
/// <summary>
|
|
/// Similar to <see cref="GridFillComponent"/> except spawns the grid near to the station.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(ShuttleSystem))]
|
|
public sealed class GridSpawnComponent : Component
|
|
{
|
|
[DataField("paths", required: true)] public List<ResPath> Paths = new();
|
|
}
|