chore: removed unnecessary partial keyword

This commit is contained in:
Syntriax 2025-04-27 22:28:35 +03:00
parent c20f210b29
commit 29f6c83bf0

View File

@ -2,7 +2,7 @@ using Syntriax.Engine.Core;
namespace Syntriax.Engine.Physics2D;
public static partial class Physics2D
public static class Physics2D
{
public static bool Overlaps(this Shape2D shape, Vector2D point) => Overlaps(shape, point, out float _);
public static bool Overlaps(this Shape2D shape, Vector2D point, out float depth)