Added more enum usages

master
Antonis Geralis 3 years ago
parent
commit
bb38f9b929
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      raylib-enumerated-types.md

+ 6
- 0
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 ```c
SetConfigFlags(unsigned int flags); SetConfigFlags(unsigned int flags);
SetWindowState(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) [`enum TraceLogLevel`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L498)
```c ```c
@ -21,6 +23,9 @@ Here it is the list with the provided enums and the functions intended to use th
IsKeyUp(int key); IsKeyUp(int key);
SetExitKey(int key); SetExitKey(int key);
//GetKeyPressed(void); //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) [`enum MouseButton`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L632)
```c ```c
@ -28,6 +33,7 @@ Here it is the list with the provided enums and the functions intended to use th
IsMouseButtonDown(int button); IsMouseButtonDown(int button);
IsMouseButtonReleased(int button); IsMouseButtonReleased(int button);
IsMouseButtonUp(int button); IsMouseButtonUp(int button);
SetCameraPanControl(int keyPan);
``` ```
[`enum MouseCursor`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L639) [`enum MouseCursor`](https://github.com/raysan5/raylib/blob/master/src/raylib.h#L639)
```c ```c

Loading…
Cancel
Save