15 lines
424 B
C#
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;
|
|
}
|