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