Files
tbd-station-14/Content.Server/Chemistry/Components/VaporComponent.cs
2022-05-13 17:59:03 +10:00

22 lines
574 B
C#

using Content.Shared.FixedPoint;
using Content.Shared.Vapor;
using Robust.Shared.Map;
namespace Content.Server.Chemistry.Components
{
[RegisterComponent]
internal sealed class VaporComponent : SharedVaporComponent
{
[ViewVariables]
[DataField("transferAmount")]
internal FixedPoint2 TransferAmount = FixedPoint2.New(0.5);
internal bool Reached;
internal float ReactTimer;
internal float Timer;
internal EntityCoordinates Target;
internal bool Active;
internal float AliveTime;
}
}