Files
crystall-punk-14/Content.Shared/Emoting/EmoteAttemptEvent.cs

13 lines
253 B
C#
Raw Permalink Normal View History

2022-05-13 00:59:03 -07:00
namespace Content.Shared.Emoting
{
public sealed class EmoteAttemptEvent : CancellableEntityEventArgs
{
public EmoteAttemptEvent(EntityUid uid)
{
Uid = uid;
}
public EntityUid Uid { get; }
}
}