Files
tbd-station-14/Content.Shared/Movement/Components/MovementRelayTargetComponent.cs
2023-01-16 01:20:22 -07:00

18 lines
649 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Movement.Components;
[RegisterComponent, NetworkedComponent]
public sealed class MovementRelayTargetComponent : Component
{
// This really shouldn't be a list at the moment. Its just not supported.
// Neither movement updating, nor HandleDirChange() support more than one mover.
// Its currently possible for the direction to be set by one mover and the relative rotation to be set by a separate unrelated mover.
// AAAAA
/// <summary>
/// Entities that are relaying to us.
/// </summary>
[ViewVariables] public readonly List<EntityUid> Entities = new();
}