Files
tbd-station-14/Content.Shared/Throwing/ThrowAttemptEvent.cs
metalgearsloth 05e31c2cd3 Don't pushback when throwing while buckled (#4232)
* Don't pushback when throwing while buckled

* Address reviews

* Fix
2021-06-28 14:17:08 +10:00

20 lines
472 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Throwing
{
public class ThrowAttemptEvent : CancellableEntityEventArgs
{
public ThrowAttemptEvent(IEntity entity)
{
Entity = entity;
}
public IEntity Entity { get; }
}
/// <summary>
/// Raised when we try to pushback an entity from throwing
/// </summary>
public sealed class ThrowPushbackAttemptEvent : CancellableEntityEventArgs {}
}