CasioCraft/src/gui.h

12 lines
232 B
C

#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