mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
14 lines
506 B
C#
14 lines
506 B
C#
using System.Numerics;
|
|
using Content.Shared.Damage;
|
|
using Content.Shared.Weapons.Reflect;
|
|
|
|
namespace Content.Shared.Weapons.Ranged.Events;
|
|
|
|
/// <summary>
|
|
/// Shot may be reflected by setting <see cref="Reflected"/> to true
|
|
/// and changing <see cref="Direction"/> where shot will go next
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public record struct HitScanReflectAttemptEvent(EntityUid? Shooter, EntityUid SourceItem, ReflectType Reflective,
|
|
Vector2 Direction, bool Reflected, DamageSpecifier? Damage); // WD EDIT
|