1 /*
2     GUILIB:  An example GUI framework library for use with SDL
3 */
4 
5 /* This header includes all the GUI widgets in one place */
6 
7 #ifndef _GUI_widgets_h
8 #define _GUI_widgets_h
9 
10 #include "GUI_generic.h"
11 #include "GUI_area.h"
12 #include "GUI_image.h"
13 #include "GUI_button.h"
14 #include "GUI_scrollbar.h"
15 #include "GUI_termwin.h"
16 #include "GUI_menu.h"
17 
18 #endif /* _GUI_widgets_h */
19