Files
tbd-station-14/Content.Shared/IgnitionSource/IgnitionEvent.cs
slarticodefast 50bbb1c101 predict IgnitionSourceComponent (#36310)
* PREDICTION

* comment

* don't overwrite event args

* totally not a web edit

* intn't
2025-04-06 17:54:47 -07:00

8 lines
249 B
C#

namespace Content.Shared.IgnitionSource;
/// <summary>
/// Raised in order to toggle the <see cref="IgnitionSourceComponent"/> on an entity on or off
/// </summary>
[ByRefEvent]
public readonly record struct IgnitionEvent(bool Ignite = false);