diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs
index cebd3a8..662ee7d 100644
--- a/Raylib-cs/interop/Raylib.cs
+++ b/Raylib-cs/interop/Raylib.cs
@@ -2350,7 +2350,7 @@ public static unsafe partial class Raylib
/// Unload mesh from memory (RAM and/or VRAM)
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadMesh(Mesh* mesh);
+ public static extern void UnloadMesh(Mesh mesh);
/// Draw a 3d mesh with material and transform
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
diff --git a/Raylib-cs/types/Raylib.Utils.cs b/Raylib-cs/types/Raylib.Utils.cs
index 46ba915..1b83b66 100644
--- a/Raylib-cs/types/Raylib.Utils.cs
+++ b/Raylib-cs/types/Raylib.Utils.cs
@@ -911,15 +911,6 @@ public static unsafe partial class Raylib
}
}
- /// Unload mesh from memory (RAM and/or VRAM)
- public static void UnloadMesh(ref Mesh mesh)
- {
- fixed (Mesh* p = &mesh)
- {
- UnloadMesh(p);
- }
- }
-
/// Set texture for a material map type (MAP_DIFFUSE, MAP_SPECULAR...)
public static void SetMaterialTexture(ref Material material, MaterialMapIndex mapType, Texture2D texture)
{