9 lines
155 B
C#
9 lines
155 B
C#
|
namespace Syntriax.Engine.Physics2D.Abstract;
|
||
|
|
||
|
public interface IPhysicsEngine2D
|
||
|
{
|
||
|
int IterationCount { get; set; }
|
||
|
|
||
|
void Step(float deltaTime);
|
||
|
}
|