18 lines
426 B
C#
18 lines
426 B
C#
using System.Threading;
|
|
|
|
namespace Content.Server.Carrying
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class CarriableComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Number of free hands required
|
|
/// to carry the entity
|
|
/// </summary>
|
|
[DataField("freeHandsRequired")]
|
|
public int FreeHandsRequired = 2;
|
|
|
|
public CancellationTokenSource? CancelToken;
|
|
}
|
|
}
|