#include "raylib.h"#include <stdbool.h>Go to the source code of this file.
Data Structures | |
| struct | Button |
Typedefs | |
| typedef struct Button | Button |
Functions | |
| Button | buttonCreate (const char *text, int x, int y, int w, int h) |
| Creates a new Button. | |
| void | buttonDraw (Button *b) |
| Draws a Button. | |
| bool | buttonPressed (Button *b) |
| Check if a Button is pressed. | |
Button system.
| Button buttonCreate | ( | const char * | text, |
| int | x, | ||
| int | y, | ||
| int | w, | ||
| int | h ) |