* Adds barotrauma, disables it for now * At least show status effect, but don't damage the mobs * Fix switch misuse
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; }
|
|
}
|
|
}
|