From 30612fc99510dcd254af06ce1f2153b5f2e40cbb Mon Sep 17 00:00:00 2001 From: Syntriax Date: Tue, 23 Jan 2024 12:18:05 +0300 Subject: [PATCH] fix: Forgotten File --- Game/Physics2D/Abstract/IPhysicsMaterial2D.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Game/Physics2D/Abstract/IPhysicsMaterial2D.cs b/Game/Physics2D/Abstract/IPhysicsMaterial2D.cs index 266545d..c533cda 100644 --- a/Game/Physics2D/Abstract/IPhysicsMaterial2D.cs +++ b/Game/Physics2D/Abstract/IPhysicsMaterial2D.cs @@ -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; } }