diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /src/parsec/include/obj_iter.h | |
| download | openparsec-main.tar.xz openparsec-main.zip | |
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_ + + |
