Files

10 lines
250 B
C#
Raw Permalink Normal View History

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!;
}