Files
crystall-punk-14/Content.Client/Machines/Components/MultipartMachineGhostComponent.cs

15 lines
424 B
C#
Raw Permalink Normal View History

2025-06-02 16:02:41 +02:00
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;
}