From bb38f9b929a266474ee3aeb14f79c16a613d06bc Mon Sep 17 00:00:00 2001 From: Antonis Geralis <43617260+planetis-m@users.noreply.github.com> Date: Mon, 4 Apr 2022 14:04:08 +0300 Subject: [PATCH] Added more enum usages --- raylib-enumerated-types.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/raylib-enumerated-types.md b/raylib-enumerated-types.md index f652615..68fc7d4 100644 --- a/raylib-enumerated-types.md +++ b/raylib-enumerated-types.md @@ -7,6 +7,8 @@ Here it is the list with the provided enums and the functions intended to use th ```c SetConfigFlags(unsigned int flags); SetWindowState(unsigned int flags); + ClearWindowState(unsigned int flags); + IsWindowState(unsigned int flag); ``` [`enum TraceLogLevel`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L498) ```c @@ -21,6 +23,9 @@ Here it is the list with the provided enums and the functions intended to use th IsKeyUp(int key); SetExitKey(int key); //GetKeyPressed(void); + SetCameraAltControl(int keyAlt); + SetCameraSmoothZoomControl(int keySmoothZoom); + SetCameraMoveControls(int keyFront, int keyBack, int keyRight, int keyLeft, int keyUp, int keyDown); ``` [`enum MouseButton`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L632) ```c @@ -28,6 +33,7 @@ Here it is the list with the provided enums and the functions intended to use th IsMouseButtonDown(int button); IsMouseButtonReleased(int button); IsMouseButtonUp(int button); + SetCameraPanControl(int keyPan); ``` [`enum MouseCursor`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L639) ```c