6
2026-01-24 12:49:55 +03: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);