Files
tbd-station-14/Content.Shared/Projectiles/ProjectileCollideEvent.cs
2023-05-15 15:21:05 +10:00

8 lines
254 B
C#

namespace Content.Shared.Projectiles;
/// <summary>
/// Raised directed on what a projectile collides with. Can have its deletion cancelled.
/// </summary>
[ByRefEvent]
public record struct ProjectileCollideEvent(EntityUid OtherEntity, bool Cancelled);