* move to shared * entity effect to shared * refactor: whitespaces+xml-doc typo fixups * refactor: a little bit more of xml-doc typos fixups --------- Co-authored-by: pa.pecherskij <pa.pecherskij@interfax.ru>
7 lines
165 B
C#
7 lines
165 B
C#
namespace Content.Shared.Emoting;
|
|
|
|
public sealed class EmoteAttemptEvent(EntityUid uid) : CancellableEntityEventArgs
|
|
{
|
|
public EntityUid Uid { get; } = uid;
|
|
}
|