Escape pods (#14809)
* Namespace adjustments for days * pod * thanks rider * Fix the oop launch * Fixes * Fix stuff * eeeeeeeee * Fix * access * map * forgor * thing * Genericise escape pod fill
This commit is contained in:
28
Content.Server/Shuttles/DockingConfig.cs
Normal file
28
Content.Server/Shuttles/DockingConfig.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using Content.Server.Shuttles.Components;
|
||||
using Robust.Shared.Map;
|
||||
|
||||
namespace Content.Server.Shuttles;
|
||||
|
||||
/// <summary>
|
||||
/// Stores the data for a valid docking configuration for the emergency shuttle
|
||||
/// </summary>
|
||||
public sealed class DockingConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// The pairs of docks that can connect.
|
||||
/// </summary>
|
||||
public List<(EntityUid DockAUid, EntityUid DockBUid, DockingComponent DockA, DockingComponent DockB)> Docks = new();
|
||||
|
||||
/// <summary>
|
||||
/// Area relative to the target grid the emergency shuttle will spawn in on.
|
||||
/// </summary>
|
||||
public Box2 Area;
|
||||
|
||||
/// <summary>
|
||||
/// Target grid for docking.
|
||||
/// </summary>
|
||||
public EntityUid TargetGrid;
|
||||
|
||||
public EntityCoordinates Coordinates;
|
||||
public Angle Angle;
|
||||
}
|
||||
Reference in New Issue
Block a user