From c068f22329d5cc722622a2183bbb22eef2093df7 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 24 Aug 2026 11:16:07 +0200 Subject: initial import --- src/parsec/include/obj_iter.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/parsec/include/obj_iter.h (limited to 'src/parsec/include/obj_iter.h') 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_ + + -- cgit v1.2.3