Files
crystall-punk-14/Content.Shared/IgnitionSource/IgnitionEvent.cs

8 lines
249 B
C#
Raw Normal View History

2024-09-01 17:27:13 -07:00
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);