From 00309f86679175157385774878fe2e51e3283463 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Thu, 26 Oct 2023 17:40:15 +0100 Subject: [PATCH] Add missing parameter to IsMaterialReady --- 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 71a1279..a947bbd 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -2320,7 +2320,7 @@ public static unsafe partial class Raylib /// Check if a material is ready [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern CBool IsMaterialReady(); + public static extern CBool IsMaterialReady(Material material); /// Unload material from GPU memory (VRAM) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]