summaryrefslogtreecommitdiff
path: root/Runtime/NavMesh/NavMeshTileCarving.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-08-14 22:50:43 +0800
committerchai <chaifix@163.com>2019-08-14 22:50:43 +0800
commit15740faf9fe9fe4be08965098bbf2947e096aeeb (patch)
treea730ec236656cc8cab5b13f088adfaed6bb218fb /Runtime/NavMesh/NavMeshTileCarving.h
+Unity Runtime codeHEADmaster
Diffstat (limited to 'Runtime/NavMesh/NavMeshTileCarving.h')
-rw-r--r--Runtime/NavMesh/NavMeshTileCarving.h12
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