Files
wwdpublic/Content.Shared/Prying/Components/PryUnpoweredComponent.cs
2025-07-12 13:39:16 +10:00

14 lines
342 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Prying.Components;
///<summary>
/// Applied to entities that can be pried open without tools while unpowered
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class PryUnpoweredComponent : Component
{
[DataField]
public float PryModifier = 0.1f;
}