6
2026-01-13 18:31:02 +02: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);