* carry * fix * carriable update * Removed carriable from vox, slime --------- Co-authored-by: Vigers Ray <60344369+VigersRay@users.noreply.github.com>
17 lines
486 B
C#
17 lines
486 B
C#
using System.Threading;
|
|
|
|
namespace Content.Server.Carrying
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class CarriableComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// необходимое количество свободных рук
|
|
/// что-бы взять сущность
|
|
/// </summary>
|
|
[DataField("freeHandsRequired")]
|
|
public int FreeHandsRequired = 2;
|
|
|
|
public CancellationTokenSource? CancelToken;
|
|
}
|
|
}
|