Delta-v/Content.Server/Interfaces/GameObjects/IPressureProtection.cs

9 lines
213 B
C#

namespace Content.Server.Interfaces.GameObjects
{
public interface IPressureProtection
{
public float HighPressureMultiplier { get; }
public float LowPressureMultiplier { get; }
}
}