1
0

ThrownEvent.cs 231 B

12345678910
  1. using JetBrains.Annotations;
  2. namespace Content.Shared.Throwing;
  3. /// <summary>
  4. /// Raised on thrown entity.
  5. /// </summary>
  6. [PublicAPI]
  7. [ByRefEvent]
  8. public readonly record struct ThrownEvent(EntityUid? User, EntityUid Thrown);