diff options
author | chai <chaifix@163.com> | 2019-08-14 22:50:43 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-08-14 22:50:43 +0800 |
commit | 15740faf9fe9fe4be08965098bbf2947e096aeeb (patch) | |
tree | a730ec236656cc8cab5b13f088adfaed6bb218fb /Runtime/NavMesh/NavMeshTileCarving.h |
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 |