Delta-v/Content.Server/_DV/Weapons/Ranged/Components/FireOnLandComponent.cs

12 lines
258 B
C#

namespace Content.Server._DV.Weapons.Ranged.Components;
[RegisterComponent]
public sealed partial class FireOnLandComponent : Component
{
/// <summary>
/// Chance to trigger.
/// </summary>
[DataField]
public float Probability = 0.1f;
}