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