From 47c3bf267d51fca00f06a819fa502bd0d84d46e6 Mon Sep 17 00:00:00 2001 From: CrackedPixel <5776225+CrackedPixel@users.noreply.github.com> Date: Wed, 7 Aug 2024 18:02:17 -0500 Subject: [PATCH] update core input mouse --- examples/core/core_input_mouse.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/core/core_input_mouse.c b/examples/core/core_input_mouse.c index e6a3e15dc37a..0de769822ca6 100644 --- a/examples/core/core_input_mouse.c +++ b/examples/core/core_input_mouse.c @@ -55,7 +55,8 @@ int main(void) DrawCircleV(ballPosition, 40, ballColor); - DrawText("move ball with mouse and click mouse button to change color", 10, 10, 20, DARKGRAY); + DrawText("move ball with mouse and click mouse buttons to change color", 10, 10, 20, DARKGRAY); + DrawText("Left: MAROON\nRight: DARKBLUE\nMiddle: LIME\nSide: PURPLE\nExtra: YELLOW\nForward: ORANGE\nBack: BEIGE", 10, 35, 20, DARKGRAY); EndDrawing(); //----------------------------------------------------------------------------------