diff options
Diffstat (limited to 'src/parsec/include/obj_iter.h')
| -rw-r--r-- | src/parsec/include/obj_iter.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/parsec/include/obj_iter.h b/src/parsec/include/obj_iter.h new file mode 100644 index 0000000..0568c87 --- /dev/null +++ b/src/parsec/include/obj_iter.h @@ -0,0 +1,22 @@ +/* + * PARSEC HEADER: obj_iter.h + */ + +#ifndef _OBJ_ITER_H_ +#define _OBJ_ITER_H_ + + +// function pointer type for iter polygon attachment +typedef void (*attach_iterpolys_fpt)( GenObject *obj, int inorder ); + + +// external functions + +void OBJ_AttachIterPolygons( GenObject *obj, int inorder ); +void OBJ_ResetRegisteredClassIterPolys( dword objclass ); +int OBJ_RegisterClassIterPolys( dword objclass, int apexid, int apexvtx, int apexcomp, int numprimvtxs, int numvtxs, float *vtxlist ); + + +#endif // _OBJ_ITER_H_ + + |
