You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
634 B
C
34 lines
634 B
C
/*
|
|
* RenderWare Graphics Collision Plugin
|
|
*
|
|
* File: ctbuild.h
|
|
* Purpose: Collision partition tree generation
|
|
*/
|
|
|
|
#ifndef CTBUILD_H
|
|
#define CTBUILD_H
|
|
|
|
/******************************************************************************
|
|
* Functions
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
RWEXPORT RpCollTree* RWAPI
|
|
_rpCollTreeBuild(
|
|
RwInt32 numVertices,
|
|
RwV3d *vertices,
|
|
RwInt32 numTriangles,
|
|
RpTriangle *triangles,
|
|
RwUInt16 *triangleSortMap
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* CTBUILD_H */
|