From db834c7d8ab7a4220aaa7cd7233a70edf8615637 Mon Sep 17 00:00:00 2001 From: Alexander Baggett Date: Wed, 4 Sep 2024 09:37:34 -0500 Subject: [PATCH] Update Raylib.cs --- Raylib-cs/interop/Raylib.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index ffc378a..613e6c4 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -1294,7 +1294,7 @@ public static unsafe partial class Raylib public unsafe static bool CheckCollisionPointPoly(Vector2 point, Vector2[] points, int pointCount) { var pointsPtr = (Vector2*)Unsafe.AsPointer(ref MemoryMarshal.GetArrayDataReference(points)); - return Raylib.CheckCollisionPointPoly(point, pointsPtr, pointCount); + return CheckCollisionPointPoly(point, pointsPtr, pointCount); } ///