IgnitionEvent.cs 235 B

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