using Content.Shared.FixedPoint; namespace Content.Shared._Offbrand.Chemistry; /// /// Event raised before injecting in response to an event, to allow modifying how much is injected /// [ByRefEvent] public struct BeforeInjectOnEventEvent(FixedPoint2 injectionAmount) { public FixedPoint2 InjectionAmount = injectionAmount; }