mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Added more enum usages
@ -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
|
||||
|
||||
Reference in New Issue
Block a user