Files
wwdpublic/Content.Shared/Throwing/ThrownEvent.cs
Vyacheslav Kovalevsky e4ec612f62 Add gas tanks throw damage (#20035)
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
2023-12-16 19:13:50 +01:00

11 lines
231 B
C#

using JetBrains.Annotations;
namespace Content.Shared.Throwing;
/// <summary>
/// Raised on thrown entity.
/// </summary>
[PublicAPI]
[ByRefEvent]
public readonly record struct ThrownEvent(EntityUid? User, EntityUid Thrown);