using System.Collections.Generic; namespace FluidSim.Interfaces { public interface IComponent { IReadOnlyList Ports { get; } void UpdateState(float dt); } }