From 31363cac4ae7241b794eec750c393f9259e6b063 Mon Sep 17 00:00:00 2001 From: Kyle Date: Thu, 14 Aug 2025 09:46:31 -0400 Subject: [PATCH] Update raylib.h --- src/raylib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/raylib.h b/src/raylib.h index c9fdab553..db38f1bf7 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1567,6 +1567,7 @@ RLAPI BoundingBox GetModelBoundingBox(Model model); // Model drawing functions RLAPI void DrawModel(Model model, Vector3 position, float scale, Color tint); // Draw a model (with texture if set) RLAPI void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); // Draw a model with extended parameters +RLAPI void DrawModelPro(Model model, Matrix transform, Color tint); // Draw a model with pro parameters RLAPI void DrawModelWires(Model model, Vector3 position, float scale, Color tint); // Draw a model wires (with texture if set) RLAPI void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); // Draw a model wires (with texture if set) with extended parameters RLAPI void DrawModelPoints(Model model, Vector3 position, float scale, Color tint); // Draw a model as points