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