13 lines
253 B
C#
13 lines
253 B
C#
namespace Content.Shared.Emoting
|
|
{
|
|
public sealed class EmoteAttemptEvent : CancellableEntityEventArgs
|
|
{
|
|
public EmoteAttemptEvent(EntityUid uid)
|
|
{
|
|
Uid = uid;
|
|
}
|
|
|
|
public EntityUid Uid { get; }
|
|
}
|
|
}
|