2022-06-16 15:28:16 +10:00
|
|
|
namespace Content.Server.Shuttles.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Added to entities when they are actively trying to dock with something else.
|
|
|
|
|
/// We track it because checking every dock constantly would be expensive.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class AutoDockComponent : Component
|
2022-06-16 15:28:16 +10:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Track who has requested autodocking so we can know when to be removed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public HashSet<EntityUid> Requesters = new();
|
|
|
|
|
}
|