mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
17 lines
451 B
C#
17 lines
451 B
C#
using Content.Shared.Chemistry.Components;
|
|
using Content.Shared.FixedPoint;
|
|
|
|
namespace Content.Client.Chemistry.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class HyposprayComponent : SharedHyposprayComponent
|
|
{
|
|
[ViewVariables]
|
|
public FixedPoint2 CurrentVolume;
|
|
[ViewVariables]
|
|
public FixedPoint2 TotalVolume;
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public bool UiUpdateNeeded;
|
|
}
|
|
}
|