Files
OldThink/Content.Shared/Throwing/ThrowAttemptEvent.cs

18 lines
437 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
namespace Content.Shared.Throwing
{
public sealed class ThrowAttemptEvent : CancellableEntityEventArgs
{
public ThrowAttemptEvent(EntityUid uid)
{
Uid = uid;
}
public EntityUid Uid { get; }
}
/// <summary>
/// Raised when we try to pushback an entity from throwing
/// </summary>
public sealed class ThrowPushbackAttemptEvent : CancellableEntityEventArgs {}
}