using Content.Shared.DoAfter;
namespace Content.Server.Resist;
[RegisterComponent]
public sealed partial class CanEscapeInventoryComponent : Component
{
///
/// Base doafter length for uncontested breakouts.
///
[DataField]
public float BaseResistTime = 5f;
public bool IsEscaping => DoAfter != null;
[DataField("doAfter")]
public DoAfterId? DoAfter;
///
/// Action to cancel inventory escape.
///
[DataField]
public EntityUid? EscapeCancelAction;
}