9 lines
201 B
C#
9 lines
201 B
C#
namespace Syntriax.Engine.Physics2D;
|
|
|
|
public readonly struct PhysicsMaterial2DDefault : IPhysicsMaterial2D
|
|
{
|
|
public readonly float Friction => .1f;
|
|
|
|
public readonly float Restitution => .1f;
|
|
}
|