fish-station/Content.Server/_Sunrise/Carrying/BeingCarriedComponent.cs
Babaev f51d4aef47
Возможность брать людей на руки (#31)
* carry

* fix

* carriable update

* Removed carriable from vox, slime

---------

Co-authored-by: Vigers Ray <60344369+VigersRay@users.noreply.github.com>
2024-06-09 17:01:25 +03:00

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