1 /*
2  * File:         primitive.h
3  *
4  * Description:  header for primitive.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 PRIMITIVE_H
14 #define PRIMITIVE_H
15 
16 #include "geo.h"
17 
18 void primitive_ref( Primitive *p ) ;
19 void primitive_unref( Primitive *p ) ;
20 void primitive_set_delete_cb(
21 	Primitive *p,
22 	void (* delete_func)( Primitive * ) ) ;
23 
24 
25 #endif
26