Files
FluidSim/Components/SoundConnection.cs

9 lines
186 B
C#

using FluidSim.Interfaces;
namespace FluidSim.Components
{
public class SoundConnection : Connection
{
public SoundConnection(Port a, Port b) : base(a, b) { }
}
}