Files
tbd-station-14/Content.Shared/_Offbrand/IV/IVTargetComponent.cs
Janet Blackquill 5fa17e22a1 De-MPL Offbrand
2025-09-27 22:43:24 -04:00

15 lines
365 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._Offbrand.IV;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
[Access(typeof(IVSystem))]
public sealed partial class IVTargetComponent : Component
{
[DataField, AutoNetworkedField]
public EntityUid? IVSource;
[DataField, AutoNetworkedField]
public string? IVJointID;
}