mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2024-11-10 15:22:09 +00:00
29 lines
345 B
C
29 lines
345 B
C
// Filename:- stl_opt.h
|
|
//
|
|
|
|
|
|
#ifndef STL_OPT_H
|
|
#define STL_OPT_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
|
|
|
|
void TriangleAbutList_Gen(int mesh[][3], int iNumTris, int iMaxVerts);
|
|
const int* TriangleAbutList_Query(int iTriangle, int *piCount);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // #ifndef STL_OPT_H
|
|
|
|
//////////////// eof ////////////////
|