8 lines
146 B
C#
8 lines
146 B
C#
|
namespace Syntriax.Engine.Physics2D.Abstract;
|
||
|
|
||
|
public interface IPhysicsMaterial2D
|
||
|
{
|
||
|
float Friction { get; }
|
||
|
float Restitution { get; }
|
||
|
}
|