fix: Forgotten File

This commit is contained in:
Syntriax 2024-01-23 12:18:05 +03:00
parent b6b974feeb
commit 30612fc995
1 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,6 @@ namespace Syntriax.Engine.Physics2D.Abstract;
public interface IPhysicsMaterial2D
{
float Friction { get; set; }
float Restitution { get; set; }
float Friction { get; }
float Restitution { get; }
}