From 85c7e98c17fc1342de95b662cb8fefe2036b0a17 Mon Sep 17 00:00:00 2001 From: Jeffery Myers Date: Tue, 14 Feb 2023 17:05:41 -0800 Subject: [PATCH] add key function to raylib.h --- src/raylib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/raylib.h b/src/raylib.h index 9699f8ffe..4087b79cc 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1173,6 +1173,7 @@ RLAPI float GetGesturePinchAngle(void); // Get gesture pinch ang // Camera System Functions (Module: rcamera) //------------------------------------------------------------------------------------ RLAPI void UpdateCamera(Camera *camera, int mode); // Update camera position for selected mode +RLAPI void SetCameraInputKey(int input, int key); // Set the camera input keys using the enum CameraInputKeys //------------------------------------------------------------------------------------ // Basic Shapes Drawing Functions (Module: shapes)