Files
OldThink/Content.Server/Atmos/Miasma/RottingComponent.cs

16 lines
416 B
C#
Raw Normal View History

namespace Content.Server.Atmos.Miasma
{
/// <summary>
/// Tracking component for stuff that has started to rot.
/// </summary>
2022-09-14 19:30:56 +02:00
[RegisterComponent]
public sealed class RottingComponent : Component
2022-07-26 20:35:34 -04:00
{
/// <summary>
/// Whether or not the rotting should deal damage
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public bool DealDamage = true;
}
}