6
2025-11-05 11:11:22 +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);