6
StarHorizon_Public/Content.Shared/Atmos/Rotting/ProRottingContainerComponent.cs
2026-01-18 12:53:36 +03:00

15 lines
380 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Atmos.Rotting;
/// <summary>
/// Entities inside this container will rot at a faster pace, e.g. a grave
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class ProRottingContainerComponent : Component
{
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float DecayModifier = 3f;
}