12 lines
277 B
C#
12 lines
277 B
C#
namespace Content.Server.Carrying
|
|
{
|
|
/// <summary>
|
|
/// Stores the carrier of an entity being carried.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class BeingCarriedComponent : Component
|
|
{
|
|
public EntityUid Carrier = default!;
|
|
}
|
|
}
|