From c196b09d33c6095c1cf7fb03c328319e784b45cc Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 13 Sep 2020 16:43:19 +0200 Subject: [PATCH] Remove function declaration added by error --- src/raylib.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/raylib.h b/src/raylib.h index 9c82ef9d..3546e57d 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1298,7 +1298,6 @@ RLAPI void DrawGizmo(Vector3 position); // Model loading/unloading functions RLAPI Model LoadModel(const char *fileName); // Load model from files (meshes and materials) RLAPI Model LoadModelFromMesh(Mesh mesh); // Load model from generated mesh (default material) -RLAPI Model LoadModelFromMemory(const char *fileType, const char *fileData, int dataSize); // Load model from memory buffer, fileType refers to extension: i.e. "obj" RLAPI void UnloadModel(Model model); // Unload model from memory (RAM and/or VRAM) // Mesh loading/unloading functions