Engine-Pong/Game/Physics2D/Abstract/IPhysicsMaterial2D.cs

8 lines
156 B
C#

namespace Syntriax.Engine.Physics2D.Abstract;
public interface IPhysicsMaterial2D
{
float Friction { get; set; }
float Restitution { get; set; }
}