6 lines
173 B
C#
6 lines
173 B
C#
|
using Syntriax.Engine.Physics2D.Abstract;
|
||
|
|
||
|
namespace Syntriax.Engine.Physics2D;
|
||
|
|
||
|
public record PhysicsMaterial2D(float Friction, float Restitution) : IPhysicsMaterial2D { }
|