Files
tbd-station-14/Content.Client/Machines/Components/MultipartMachineGhostComponent.cs
2025-06-02 17:02:41 +03:00

15 lines
424 B
C#

namespace Content.Client.Machines.Components;
/// <summary>
/// Component attached to all multipart machine ghosts
/// Intended for client side usage only, but used on prototypes.
/// </summary>
[RegisterComponent]
public sealed partial class MultipartMachineGhostComponent : Component
{
/// <summary>
/// Machine this particular ghost is linked to.
/// </summary>
public EntityUid? LinkedMachine = null;
}