Files
tbd-station-14/Content.Server/Cleanable/CleanableComponent.cs
2022-02-16 18:23:23 +11:00

18 lines
525 B
C#

using Content.Shared.Chemistry.Reagent;
using Content.Shared.FixedPoint;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Server.Cleanable
{
[RegisterComponent]
public sealed class CleanableComponent : Component
{
[DataField("cleanAmount")]
private FixedPoint2 _cleanAmount = FixedPoint2.Zero;
[ViewVariables(VVAccess.ReadWrite)]
public FixedPoint2 CleanAmount => _cleanAmount;
}
}