Files
tbd-station-14/Content.Shared/_Offbrand/Chemistry/BeforeInjectOnEventEvent.cs
Janet Blackquill 579ea90d49 thusd refactoring
2025-10-03 12:21:48 -04:00

13 lines
352 B
C#

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