7 lines
118 B
C#
7 lines
118 B
C#
namespace Sand.Core;
|
|
|
|
public interface ISimulationAccelerator
|
|
{
|
|
void Step(SandSimulation simulation, float dt);
|
|
}
|