#include "checkbox.h"#include "files.h"#include "raylib.h"#include <stdbool.h>Functions | |
| Checkbox | checkboxCreate (int x, int y) |
| Creates a new Checkbox. | |
| void | checkboxDraw (Checkbox *b) |
| Draws a Checkbox. | |
| bool | checkboxPressed (Checkbox *b) |
| Check if a Checkbox is pressed. | |
Checkbox system.
This file contains functions for creating, drawing, and checking if a checkbox has been pressed.
| Checkbox checkboxCreate | ( | int | x, |
| int | y ) |