diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs
index b69c8d4..c957fe9 100644
--- a/Raylib-cs/interop/Raylib.cs
+++ b/Raylib-cs/interop/Raylib.cs
@@ -2427,6 +2427,21 @@ public static unsafe partial class Raylib
Color tint
);
+ /// Draw a model as points
+ [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawModelPoints(Model model, Vector3 position, float scale, Color tint);
+
+ /// Draw a model as points with extended parameters
+ [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawModelPointsEx(
+ Model model,
+ Vector3 position,
+ Vector3 rotationAxis,
+ float rotationAngle,
+ Vector3 scale,
+ Color tint
+ );
+
/// Draw bounding box (wires)
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawBoundingBox(BoundingBox box, Color color);