* Adds new different reaction types. - Adds touch, injection and ingestion reactions for entities. - Adds tile reactions. - Removes GasSprayerComponent in favor of SprayComponent. - Gives fire extinguishers a safety. - Gives spray puffs a sprite. - Improved spray and fire extinguisher in general. - Fire extinguisher now ACTUALLY puts out fires. Amazing, eh? - Fire extinguisher sprays three 'clouds' at once. - Spraying flammable chemicals at fire makes them worse. Whoops! - Gives spray and fire extinguisher their classic sounds. - Most chemicals now don't make puddles. Too bad! - Space lube now makes a very slippery puddle. Honk. - Spraying water (or using a fire extinguisher) on existing puddles makes them bigger. * Fix solution tests * food base now has solution container with noexamine caps
31 lines
984 B
C#
31 lines
984 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Atmos
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum PumpVisuals
|
|
{
|
|
VisualState
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public class PumpVisualState
|
|
{
|
|
public readonly PipeDirection InletDirection;
|
|
public readonly PipeDirection OutletDirection;
|
|
public readonly ConduitLayer InletConduitLayer;
|
|
public readonly ConduitLayer OutletConduitLayer;
|
|
public readonly bool PumpEnabled;
|
|
|
|
public PumpVisualState(PipeDirection inletDirection, PipeDirection outletDirection, ConduitLayer inletConduitLayer, ConduitLayer outletConduitLayer, bool pumpEnabled)
|
|
{
|
|
InletDirection = inletDirection;
|
|
OutletDirection = outletDirection;
|
|
InletConduitLayer = inletConduitLayer;
|
|
OutletConduitLayer = outletConduitLayer;
|
|
PumpEnabled = pumpEnabled;
|
|
}
|
|
}
|
|
}
|