9 lines
292 B
C#
9 lines
292 B
C#
namespace Content.Shared.Containers;
|
|
|
|
/// <summary>
|
|
/// Sent before the insertion is made.
|
|
/// Allows preventing the insertion if any system on the entity should need to.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public record struct BeforeThrowInsertEvent(EntityUid ThrownEntity, bool Cancelled = false);
|