1
0

VaporComponent.cs 431 B

1234567891011121314151617
  1. using Content.Shared.FixedPoint;
  2. namespace Content.Server.Chemistry.Components
  3. {
  4. [RegisterComponent]
  5. public sealed partial class VaporComponent : Component
  6. {
  7. public const string SolutionName = "vapor";
  8. [DataField("transferAmount")]
  9. public FixedPoint2 TransferAmount = FixedPoint2.New(0.5);
  10. public float ReactTimer;
  11. [DataField("active")]
  12. public bool Active;
  13. }
  14. }