2023-05-31 11:13:02 +10:00
|
|
|
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))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class GridSpawnComponent : Component
|
2023-05-31 11:13:02 +10:00
|
|
|
{
|
|
|
|
|
[DataField("paths", required: true)] public List<ResPath> Paths = new();
|
|
|
|
|
}
|