CasioCraft/src/gui.h

12 lines
232 B
C
Raw Normal View History

2022-01-13 11:02:23 +01:00
#ifndef GUI_H
#define GUI_H
/* shows a button
@state :
0 : desactivated
1 : normal
2 : highlighted
*/
void show_button(int x, int y, int size, char const *text, bopti_image_t *img_widgets, int state);
#endif