18 lines
431 B
C#
18 lines
431 B
C#
using Content.Shared.FixedPoint;
|
|
|
|
namespace Content.Server.Chemistry.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class VaporComponent : Component
|
|
{
|
|
public const string SolutionName = "vapor";
|
|
|
|
[DataField("transferAmount")]
|
|
public FixedPoint2 TransferAmount = FixedPoint2.New(0.5);
|
|
|
|
public float ReactTimer;
|
|
[DataField("active")]
|
|
public bool Active;
|
|
}
|
|
}
|