10 lines
191 B
C#
10 lines
191 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FluidSim.Interfaces
|
|
{
|
|
public interface IComponent
|
|
{
|
|
IReadOnlyList<Port> Ports { get; }
|
|
void UpdateState(float dt);
|
|
}
|
|
} |