Files
RobustToolbox/Robust.Shared/Physics/Components/JointRelayTargetComponent.cs

17 lines
477 B
C#

using System.Collections.Generic;
using Robust.Shared.GameObjects;
using Robust.Shared.GameStates;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Robust.Shared.Physics.Components;
/// <summary>
/// Does this entity have joint data relayed from elsewhere.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class JointRelayTargetComponent : Component
{
[DataField("relayTarget")]
public HashSet<EntityUid> Relayed = new();
}