9 lines
213 B
C#
9 lines
213 B
C#
|
|
namespace Content.Server.Interfaces.GameObjects
|
|||
|
|
{
|
|||
|
|
public interface IPressureProtection
|
|||
|
|
{
|
|||
|
|
public float HighPressureMultiplier { get; }
|
|||
|
|
public float LowPressureMultiplier { get; }
|
|||
|
|
}
|
|||
|
|
}
|