Files
FluidSim/Interfaces/IComponent.cs
2026-05-09 01:44:35 +02:00

10 lines
191 B
C#

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