10 lines
250 B
C#
10 lines
250 B
C#
namespace Content.Server._White.Carrying;
|
|
|
|
/// <summary>
|
|
/// Added to an entity when they are carrying somebody.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CarryingComponent : Component
|
|
{
|
|
public EntityUid Carried = default!;
|
|
} |