Files
tbd-station-14/Content.Server/CombatMode/DisarmedEvent.cs
2022-05-13 15:30:30 +10:00

21 lines
539 B
C#

namespace Content.Server.CombatMode
{
public sealed class DisarmedEvent : HandledEntityEventArgs
{
/// <summary>
/// The entity being disarmed.
/// </summary>
public EntityUid Target { get; init; }
/// <summary>
/// The entity performing the disarm.
/// </summary>
public EntityUid Source { get; init; }
/// <summary>
/// Probability for push/knockdown.
/// </summary>
public float PushProbability { get; init; }
}
}