31 lines
887 B
C#
31 lines
887 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.ViewVariables;
|
|
using Robust.Shared.Analyzers;
|
|
using System.Threading;
|
|
|
|
namespace Content.Server.Resist;
|
|
|
|
[RegisterComponent]
|
|
[Friend(typeof(ResistLockerSystem))]
|
|
public sealed class ResistLockerComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// How long will this locker take to kick open, defaults to 2 minutes
|
|
/// </summary>
|
|
[ViewVariables]
|
|
[DataField("resistTime")]
|
|
public float ResistTime = 120f;
|
|
|
|
/// <summary>
|
|
/// For quick exit if the player attempts to move while already resisting
|
|
/// </summary>
|
|
[ViewVariables]
|
|
public bool IsResisting = false;
|
|
|
|
/// <summary>
|
|
/// Cancellation token used to cancel the DoAfter if the container is opened before it's complete
|
|
/// </summary>
|
|
public CancellationTokenSource? CancelToken;
|
|
}
|