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

8 lines
146 B
C#
Raw Normal View History

2023-11-30 17:52:09 +03:00
namespace Syntriax.Engine.Physics2D.Abstract;
public interface IPhysicsMaterial2D
{
2024-01-23 12:18:05 +03:00
float Friction { get; }
float Restitution { get; }
2023-11-30 17:52:09 +03:00
}