Shuttle drone improvements (#16931)
This commit is contained in:
13
Content.Server/Shuttles/Components/GridSpawnComponent.cs
Normal file
13
Content.Server/Shuttles/Components/GridSpawnComponent.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user