6
StarHorizon_Public/Content.Shared/Atmos/Components/ExtinguishableSetCollisionWakeComponent.cs
2025-11-15 12:24:44 +03:00

12 lines
402 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Atmos.Components;
/// <summary>
/// Makes entities with extinguishing behavior automatically enable/disable <see cref="CollisionWakeComponent"/>,
/// so they can be extinguished with fire extinguishers.
/// </summary>
[RegisterComponent]
[NetworkedComponent]
public sealed partial class ExtinguishableSetCollisionWakeComponent : Component;