2021-06-09 22:19:39 +02:00
|
|
|
using Content.Shared.Chemistry.Components;
|
2021-11-03 16:48:03 -07:00
|
|
|
using Content.Shared.FixedPoint;
|
2021-01-24 14:18:12 +01:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Client.Chemistry.Components
|
2021-01-24 14:18:12 +01:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class HyposprayComponent : SharedHyposprayComponent
|
2021-01-24 14:18:12 +01:00
|
|
|
{
|
2022-09-11 08:53:17 +02:00
|
|
|
[ViewVariables]
|
|
|
|
|
public FixedPoint2 CurrentVolume;
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public FixedPoint2 TotalVolume;
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
public bool UiUpdateNeeded;
|
2021-01-24 14:18:12 +01:00
|
|
|
}
|
|
|
|
|
}
|