mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 04:50:55 +01:00
* 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;
|
|
}
|