Files
crystall-punk-14/Content.Shared/_CP14/Wallmount/CP14WallmountComponent.cs
2024-11-15 23:54:58 +03:00

15 lines
397 B
C#

namespace Content.Shared._CP14.Wallmount;
/// <summary>
/// Automatically attaches the entity to the wall when it appears, or removes it
/// </summary>
[RegisterComponent, Access(typeof(CP14WallmountSystem))]
public sealed partial class CP14WallmountComponent : Component
{
[DataField]
public int AttachAttempts = 3;
[DataField]
public TimeSpan NextAttachTime = TimeSpan.Zero;
}