2024-03-27 16:56:45 +07:00
|
|
|
namespace Content.Server._White.Carrying;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Added to an entity when they are carrying somebody.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class CarryingComponent : Component
|
2023-05-10 01:11:06 +06:00
|
|
|
{
|
2024-03-27 16:56:45 +07:00
|
|
|
public EntityUid Carried = default!;
|
|
|
|
|
}
|