fix: DebuggerDisplay Wrongly Typed Parameters

This commit is contained in:
2024-01-27 21:05:56 +03:00
parent 6a104d8abd
commit 69eca44dd8
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ using Syntriax.Engine.Core.Abstract;
namespace Syntriax.Engine.Physics2D.Primitives;
[System.Diagnostics.DebuggerDisplay("Vertices Count: {Vertices.Count()}")]
[System.Diagnostics.DebuggerDisplay("Vertices Count: {Vertices.Count}")]
public readonly struct Shape(IList<Vector2D> Vertices) : IEnumerable<Vector2D>
{
public static readonly Shape Triangle = CreateNgon(3, Vector2D.Up);