6
2026-01-13 18:31:02 +02:00

13 lines
253 B
C#

namespace Content.Shared.Emoting
{
public sealed class EmoteAttemptEvent : CancellableEntityEventArgs
{
public EmoteAttemptEvent(EntityUid uid)
{
Uid = uid;
}
public EntityUid Uid { get; }
}
}