1 /*
2  * File:         toolbox.h
3  *
4  * Description:  header for toolbox.c
5  *
6  *
7  * This source code is part of kludge3d, and is released under the
8  * GNU General Public License.
9  *
10  *
11  */
12 
13 #ifndef TOOLBOX_H
14 #define TOOLBOX_H
15 
16 #include <gtk/gtk.h>
17 
18 
19 GtkWidget *create_toolbox( void );
20 
21 #endif
22