Co-authored-by: a.rudenko <creadth@gmail.com> Co-authored-by: creadth <creadth@users.noreply.github.com> Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
13 lines
340 B
C#
13 lines
340 B
C#
using System;
|
|
using Robust.Shared.GameObjects.Components.UserInterface;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Atmos.GasTank
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public class GasTankSetPressureMessage : BoundUserInterfaceMessage
|
|
{
|
|
public float Pressure { get; set; }
|
|
}
|
|
}
|