FireStarterActionEvent.cs 309 B

12345678910
  1. namespace Content.Shared.Actions.Events;
  2. public sealed partial class FireStarterActionEvent : InstantActionEvent
  3. {
  4. /// <summary>
  5. /// Increases the number of fire stacks when a flammable object is ignited.
  6. /// </summary>
  7. [ViewVariables(VVAccess.ReadWrite)]
  8. public float Severity = 0.3f;
  9. }