Files
OldThink/Content.Server/Act/IDisarmedAct.cs

21 lines
532 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
namespace Content.Server.Act
{
public sealed class DisarmedEvent : HandledEntityEventArgs
{
/// <summary>
/// The entity being disarmed.
/// </summary>
2021-12-05 18:09:01 +01:00
public EntityUid Target { get; init; }
/// <summary>
/// The entity performing the disarm.
/// </summary>
2021-12-05 18:09:01 +01:00
public EntityUid Source { get; init; }
/// <summary>
/// Probability for push/knockdown.
/// </summary>
public float PushProbability { get; init; }
}
}