2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Fix UnloadModelAnimations type

This commit is contained in:
ChrisDill 2023-05-13 08:24:38 +01:00
parent b70b7812f9
commit c4aa6196ea

View File

@ -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)]