Files
tbd-station-14/Content.Server/Atmos/Miasma/RottingComponent.cs
2022-09-15 03:30:56 +10:00

16 lines
416 B
C#

namespace Content.Server.Atmos.Miasma
{
/// <summary>
/// Tracking component for stuff that has started to rot.
/// </summary>
[RegisterComponent]
public sealed class RottingComponent : Component
{
/// <summary>
/// Whether or not the rotting should deal damage
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public bool DealDamage = true;
}
}