From a930b4d04c325d964dbf8049690ca8005230acfa Mon Sep 17 00:00:00 2001 From: JupiterRider <60042618+JupiterRider@users.noreply.github.com> Date: Fri, 6 Dec 2024 18:29:14 +0100 Subject: [PATCH] DrawPixel and DrawPixelV documentation updated --- Raylib-cs/interop/Raylib.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index 81a40f0..349c72b 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -1030,11 +1030,11 @@ public static unsafe partial class Raylib // Basic shapes drawing functions - /// Draw a pixel + /// Draw a pixel using geometry [Can be slow, use with care] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixel(int posX, int posY, Color color); - /// Draw a pixel (Vector version) + /// Draw a pixel using geometry (Vector version) [Can be slow, use with care] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixelV(Vector2 position, Color color);