EmoteAttemptEvent.cs 253 B

123456789101112
  1. namespace Content.Shared.Emoting
  2. {
  3. public sealed class EmoteAttemptEvent : CancellableEntityEventArgs
  4. {
  5. public EmoteAttemptEvent(EntityUid uid)
  6. {
  7. Uid = uid;
  8. }
  9. public EntityUid Uid { get; }
  10. }
  11. }