mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
11 lines
231 B
C#
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);
|