Files
tbd-station-14/Content.Shared/IgnitionSource/IgnitionEvent.cs
2024-09-02 02:27:13 +02:00

8 lines
235 B
C#

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