diff options
Diffstat (limited to 'Runtime/NavMesh/NavMeshTileCarving.h')
-rw-r--r-- | Runtime/NavMesh/NavMeshTileCarving.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Runtime/NavMesh/NavMeshTileCarving.h b/Runtime/NavMesh/NavMeshTileCarving.h new file mode 100644 index 0000000..6ef85a2 --- /dev/null +++ b/Runtime/NavMesh/NavMeshTileCarving.h @@ -0,0 +1,12 @@ +#ifndef _NAVMESHTILECARVING_H_INCLUDED_ +#define _NAVMESHTILECARVING_H_INCLUDED_ + +struct dtMeshTile; +class dtNavMesh; +class Matrix4x4f; +class Vector3f; +class MinMaxAABB; + +void CarveNavMeshTile (const dtMeshTile* tile, dtNavMesh* detourNavMesh, size_t count, const Matrix4x4f* transforms, const Vector3f* sizes, const MinMaxAABB* aabbs); + +#endif |