From c4aa6196ea553e48c8fa485ae45d4a777dfa774e Mon Sep 17 00:00:00 2001
From: ChrisDill <chris.rj.dill@gmail.com>
Date: Sat, 13 May 2023 08:24:38 +0100
Subject: [PATCH] Fix UnloadModelAnimations type

---
 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 470992d..8ccc62c 100644
--- a/Raylib-cs/interop/Raylib.cs
+++ b/Raylib-cs/interop/Raylib.cs
@@ -2351,7 +2351,7 @@ namespace Raylib_cs
 
         /// <summary>Unload animation array data</summary>
         [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
-        public static extern void UnloadModelAnimations(ModelAnimation[] animations, uint count);
+        public static extern void UnloadModelAnimations(ModelAnimation* animations, uint count);
 
         /// <summary>Check model animation skeleton match</summary>
         [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]