2022-06-17 03:00:23 -04:00
|
|
|
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]
|
2022-06-17 03:00:23 -04:00
|
|
|
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;
|
|
|
|
|
}
|
2022-06-17 03:00:23 -04:00
|
|
|
}
|