Files
OldThink/Content.Server/_White/Carrying/CarriableComponent.cs
2024-03-27 16:56:45 +07:00

16 lines
365 B
C#

using System.Threading;
namespace Content.Server._White.Carrying;
[RegisterComponent]
public sealed partial class CarriableComponent : Component
{
/// <summary>
/// Number of free hands required
/// to carry the entity
/// </summary>
[DataField]
public int FreeHandsRequired = 2;
public CancellationTokenSource? CancelToken;
}