From 546a9d0b97455be49f061774ec6e98fa0ac05348 Mon Sep 17 00:00:00 2001 From: ikpil Date: Sun, 23 Apr 2023 14:13:10 +0900 Subject: [PATCH] move QueryResults --- src/DotRecast.Detour.Crowd/Crowd.cs | 1 + src/DotRecast.Detour.Crowd/LocalBoundary.cs | 1 + src/DotRecast.Detour.Crowd/PathCorridor.cs | 1 + src/DotRecast.Detour.Crowd/PathQueue.cs | 1 + src/DotRecast.Detour.Extras/Jumplink/NavMeshGroundSampler.cs | 1 + src/DotRecast.Detour/FindNearestPolyQuery.cs | 1 + src/DotRecast.Detour/LegacyNavMeshQuery.cs | 1 + src/DotRecast.Detour/NavMesh.cs | 1 + src/DotRecast.Detour/NavMeshQuery.cs | 1 + src/DotRecast.Detour/PathUtils.cs | 1 + .../{ => QueryResults}/ClosestPointOnPolyResult.cs | 2 +- .../{ => QueryResults}/FindDistanceToWallResult.cs | 2 +- .../{ => QueryResults}/FindLocalNeighbourhoodResult.cs | 2 +- .../{ => QueryResults}/FindNearestPolyResult.cs | 2 +- .../{ => QueryResults}/FindPolysAroundResult.cs | 2 +- .../{ => QueryResults}/FindRandomPointResult.cs | 2 +- .../{ => QueryResults}/GetPolyWallSegmentsResult.cs | 4 ++-- .../{ => QueryResults}/MoveAlongSurfaceResult.cs | 2 +- src/DotRecast.Detour/{ => QueryResults}/Result.cs | 2 +- src/DotRecast.Recast.Demo/Draw/RecastDebugDraw.cs | 1 + src/DotRecast.Recast.Demo/Tools/CrowdProfilingTool.cs | 1 + src/DotRecast.Recast.Demo/Tools/CrowdTool.cs | 1 + src/DotRecast.Recast.Demo/Tools/TestNavmeshTool.cs | 1 + test/DotRecast.Detour.Crowd.Test/AbstractCrowdTest.cs | 1 + test/DotRecast.Detour.Crowd.Test/PathCorridorTest.cs | 1 + test/DotRecast.Detour.Dynamic.Test/DynamicNavMeshTest.cs | 1 + .../Unity/Astar/UnityAStarPathfindingImporterTest.cs | 1 + test/DotRecast.Detour.Test/FindDistanceToWallTest.cs | 1 + test/DotRecast.Detour.Test/FindLocalNeighbourhoodTest.cs | 1 + test/DotRecast.Detour.Test/FindNearestPolyTest.cs | 1 + test/DotRecast.Detour.Test/FindPathTest.cs | 1 + test/DotRecast.Detour.Test/FindPolysAroundCircleTest.cs | 1 + test/DotRecast.Detour.Test/FindPolysAroundShapeTest.cs | 1 + test/DotRecast.Detour.Test/GetPolyWallSegmentsTest.cs | 1 + test/DotRecast.Detour.Test/MoveAlongSurfaceTest.cs | 1 + test/DotRecast.Detour.Test/RandomPointTest.cs | 1 + test/DotRecast.Detour.Test/TiledFindPathTest.cs | 1 + test/DotRecast.Detour.TileCache.Test/TileCacheFindPathTest.cs | 1 + .../TileCacheNavigationTest.cs | 1 + 39 files changed, 40 insertions(+), 10 deletions(-) rename src/DotRecast.Detour/{ => QueryResults}/ClosestPointOnPolyResult.cs (97%) rename src/DotRecast.Detour/{ => QueryResults}/FindDistanceToWallResult.cs (97%) rename src/DotRecast.Detour/{ => QueryResults}/FindLocalNeighbourhoodResult.cs (97%) rename src/DotRecast.Detour/{ => QueryResults}/FindNearestPolyResult.cs (97%) rename src/DotRecast.Detour/{ => QueryResults}/FindPolysAroundResult.cs (97%) rename src/DotRecast.Detour/{ => QueryResults}/FindRandomPointResult.cs (97%) rename src/DotRecast.Detour/{ => QueryResults}/GetPolyWallSegmentsResult.cs (97%) rename src/DotRecast.Detour/{ => QueryResults}/MoveAlongSurfaceResult.cs (97%) rename src/DotRecast.Detour/{ => QueryResults}/Result.cs (98%) diff --git a/src/DotRecast.Detour.Crowd/Crowd.cs b/src/DotRecast.Detour.Crowd/Crowd.cs index e749b27..a65127e 100644 --- a/src/DotRecast.Detour.Crowd/Crowd.cs +++ b/src/DotRecast.Detour.Crowd/Crowd.cs @@ -24,6 +24,7 @@ using System.Collections.Generic; using System.Collections.ObjectModel; using DotRecast.Core; using DotRecast.Detour.Crowd.Tracking; +using DotRecast.Detour.QueryResults; namespace DotRecast.Detour.Crowd { diff --git a/src/DotRecast.Detour.Crowd/LocalBoundary.cs b/src/DotRecast.Detour.Crowd/LocalBoundary.cs index 2be0f46..1e5d64e 100644 --- a/src/DotRecast.Detour.Crowd/LocalBoundary.cs +++ b/src/DotRecast.Detour.Crowd/LocalBoundary.cs @@ -21,6 +21,7 @@ freely, subject to the following restrictions: using System; using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; namespace DotRecast.Detour.Crowd { diff --git a/src/DotRecast.Detour.Crowd/PathCorridor.cs b/src/DotRecast.Detour.Crowd/PathCorridor.cs index 14876d3..140fab5 100644 --- a/src/DotRecast.Detour.Crowd/PathCorridor.cs +++ b/src/DotRecast.Detour.Crowd/PathCorridor.cs @@ -21,6 +21,7 @@ freely, subject to the following restrictions: using System; using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; namespace DotRecast.Detour.Crowd { diff --git a/src/DotRecast.Detour.Crowd/PathQueue.cs b/src/DotRecast.Detour.Crowd/PathQueue.cs index 61fc474..d2d48ee 100644 --- a/src/DotRecast.Detour.Crowd/PathQueue.cs +++ b/src/DotRecast.Detour.Crowd/PathQueue.cs @@ -20,6 +20,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; namespace DotRecast.Detour.Crowd { diff --git a/src/DotRecast.Detour.Extras/Jumplink/NavMeshGroundSampler.cs b/src/DotRecast.Detour.Extras/Jumplink/NavMeshGroundSampler.cs index 30ca9ba..8a66ea2 100644 --- a/src/DotRecast.Detour.Extras/Jumplink/NavMeshGroundSampler.cs +++ b/src/DotRecast.Detour.Extras/Jumplink/NavMeshGroundSampler.cs @@ -1,5 +1,6 @@ using System; using DotRecast.Core; +using DotRecast.Detour.QueryResults; using DotRecast.Recast; namespace DotRecast.Detour.Extras.Jumplink diff --git a/src/DotRecast.Detour/FindNearestPolyQuery.cs b/src/DotRecast.Detour/FindNearestPolyQuery.cs index 14f2c3b..532bee6 100644 --- a/src/DotRecast.Detour/FindNearestPolyQuery.cs +++ b/src/DotRecast.Detour/FindNearestPolyQuery.cs @@ -1,5 +1,6 @@ using System; using DotRecast.Core; +using DotRecast.Detour.QueryResults; namespace DotRecast.Detour { diff --git a/src/DotRecast.Detour/LegacyNavMeshQuery.cs b/src/DotRecast.Detour/LegacyNavMeshQuery.cs index 0160ad1..0b9a1a0 100644 --- a/src/DotRecast.Detour/LegacyNavMeshQuery.cs +++ b/src/DotRecast.Detour/LegacyNavMeshQuery.cs @@ -19,6 +19,7 @@ freely, subject to the following restrictions: using System; using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; namespace DotRecast.Detour { diff --git a/src/DotRecast.Detour/NavMesh.cs b/src/DotRecast.Detour/NavMesh.cs index c47f879..1332acf 100644 --- a/src/DotRecast.Detour/NavMesh.cs +++ b/src/DotRecast.Detour/NavMesh.cs @@ -23,6 +23,7 @@ using System.Collections.Generic; using System.Collections.Immutable; using System.Numerics; using DotRecast.Core; +using DotRecast.Detour.QueryResults; namespace DotRecast.Detour { diff --git a/src/DotRecast.Detour/NavMeshQuery.cs b/src/DotRecast.Detour/NavMeshQuery.cs index 94e19fc..1aae52e 100644 --- a/src/DotRecast.Detour/NavMeshQuery.cs +++ b/src/DotRecast.Detour/NavMeshQuery.cs @@ -23,6 +23,7 @@ using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using DotRecast.Core; +using DotRecast.Detour.QueryResults; namespace DotRecast.Detour { diff --git a/src/DotRecast.Detour/PathUtils.cs b/src/DotRecast.Detour/PathUtils.cs index 73112d3..f1c130b 100644 --- a/src/DotRecast.Detour/PathUtils.cs +++ b/src/DotRecast.Detour/PathUtils.cs @@ -21,6 +21,7 @@ freely, subject to the following restrictions: using System; using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; namespace DotRecast.Detour { diff --git a/src/DotRecast.Detour/ClosestPointOnPolyResult.cs b/src/DotRecast.Detour/QueryResults/ClosestPointOnPolyResult.cs similarity index 97% rename from src/DotRecast.Detour/ClosestPointOnPolyResult.cs rename to src/DotRecast.Detour/QueryResults/ClosestPointOnPolyResult.cs index 1aad484..1afe7fe 100644 --- a/src/DotRecast.Detour/ClosestPointOnPolyResult.cs +++ b/src/DotRecast.Detour/QueryResults/ClosestPointOnPolyResult.cs @@ -20,7 +20,7 @@ freely, subject to the following restrictions: using DotRecast.Core; -namespace DotRecast.Detour +namespace DotRecast.Detour.QueryResults { public class ClosestPointOnPolyResult { diff --git a/src/DotRecast.Detour/FindDistanceToWallResult.cs b/src/DotRecast.Detour/QueryResults/FindDistanceToWallResult.cs similarity index 97% rename from src/DotRecast.Detour/FindDistanceToWallResult.cs rename to src/DotRecast.Detour/QueryResults/FindDistanceToWallResult.cs index 040b846..7861eda 100644 --- a/src/DotRecast.Detour/FindDistanceToWallResult.cs +++ b/src/DotRecast.Detour/QueryResults/FindDistanceToWallResult.cs @@ -20,7 +20,7 @@ freely, subject to the following restrictions: using DotRecast.Core; -namespace DotRecast.Detour +namespace DotRecast.Detour.QueryResults { //TODO: (PP) Add comments public class FindDistanceToWallResult diff --git a/src/DotRecast.Detour/FindLocalNeighbourhoodResult.cs b/src/DotRecast.Detour/QueryResults/FindLocalNeighbourhoodResult.cs similarity index 97% rename from src/DotRecast.Detour/FindLocalNeighbourhoodResult.cs rename to src/DotRecast.Detour/QueryResults/FindLocalNeighbourhoodResult.cs index d72c8d6..74e828c 100644 --- a/src/DotRecast.Detour/FindLocalNeighbourhoodResult.cs +++ b/src/DotRecast.Detour/QueryResults/FindLocalNeighbourhoodResult.cs @@ -20,7 +20,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; -namespace DotRecast.Detour +namespace DotRecast.Detour.QueryResults { //TODO: (PP) Add comments public class FindLocalNeighbourhoodResult diff --git a/src/DotRecast.Detour/FindNearestPolyResult.cs b/src/DotRecast.Detour/QueryResults/FindNearestPolyResult.cs similarity index 97% rename from src/DotRecast.Detour/FindNearestPolyResult.cs rename to src/DotRecast.Detour/QueryResults/FindNearestPolyResult.cs index 908c722..09cdca6 100644 --- a/src/DotRecast.Detour/FindNearestPolyResult.cs +++ b/src/DotRecast.Detour/QueryResults/FindNearestPolyResult.cs @@ -20,7 +20,7 @@ freely, subject to the following restrictions: using DotRecast.Core; -namespace DotRecast.Detour +namespace DotRecast.Detour.QueryResults { public class FindNearestPolyResult { diff --git a/src/DotRecast.Detour/FindPolysAroundResult.cs b/src/DotRecast.Detour/QueryResults/FindPolysAroundResult.cs similarity index 97% rename from src/DotRecast.Detour/FindPolysAroundResult.cs rename to src/DotRecast.Detour/QueryResults/FindPolysAroundResult.cs index 251611d..aa127aa 100644 --- a/src/DotRecast.Detour/FindPolysAroundResult.cs +++ b/src/DotRecast.Detour/QueryResults/FindPolysAroundResult.cs @@ -20,7 +20,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; -namespace DotRecast.Detour +namespace DotRecast.Detour.QueryResults { // TODO: (PP) Add comments public class FindPolysAroundResult diff --git a/src/DotRecast.Detour/FindRandomPointResult.cs b/src/DotRecast.Detour/QueryResults/FindRandomPointResult.cs similarity index 97% rename from src/DotRecast.Detour/FindRandomPointResult.cs rename to src/DotRecast.Detour/QueryResults/FindRandomPointResult.cs index 1f1e61b..ddea366 100644 --- a/src/DotRecast.Detour/FindRandomPointResult.cs +++ b/src/DotRecast.Detour/QueryResults/FindRandomPointResult.cs @@ -20,7 +20,7 @@ freely, subject to the following restrictions: using DotRecast.Core; -namespace DotRecast.Detour +namespace DotRecast.Detour.QueryResults { //TODO: (PP) Add comments public class FindRandomPointResult diff --git a/src/DotRecast.Detour/GetPolyWallSegmentsResult.cs b/src/DotRecast.Detour/QueryResults/GetPolyWallSegmentsResult.cs similarity index 97% rename from src/DotRecast.Detour/GetPolyWallSegmentsResult.cs rename to src/DotRecast.Detour/QueryResults/GetPolyWallSegmentsResult.cs index 701a50d..1bed905 100644 --- a/src/DotRecast.Detour/GetPolyWallSegmentsResult.cs +++ b/src/DotRecast.Detour/QueryResults/GetPolyWallSegmentsResult.cs @@ -21,7 +21,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; using DotRecast.Core; -namespace DotRecast.Detour +namespace DotRecast.Detour.QueryResults { public class GetPolyWallSegmentsResult { @@ -38,7 +38,7 @@ namespace DotRecast.Detour { return _segmentVerts.Count; } - + public int countSegmentRefs() { return _segmentRefs.Count; diff --git a/src/DotRecast.Detour/MoveAlongSurfaceResult.cs b/src/DotRecast.Detour/QueryResults/MoveAlongSurfaceResult.cs similarity index 97% rename from src/DotRecast.Detour/MoveAlongSurfaceResult.cs rename to src/DotRecast.Detour/QueryResults/MoveAlongSurfaceResult.cs index f805ede..c6e70a7 100644 --- a/src/DotRecast.Detour/MoveAlongSurfaceResult.cs +++ b/src/DotRecast.Detour/QueryResults/MoveAlongSurfaceResult.cs @@ -21,7 +21,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; using DotRecast.Core; -namespace DotRecast.Detour +namespace DotRecast.Detour.QueryResults { public class MoveAlongSurfaceResult { diff --git a/src/DotRecast.Detour/Result.cs b/src/DotRecast.Detour/QueryResults/Result.cs similarity index 98% rename from src/DotRecast.Detour/Result.cs rename to src/DotRecast.Detour/QueryResults/Result.cs index 678efcf..a38e23c 100644 --- a/src/DotRecast.Detour/Result.cs +++ b/src/DotRecast.Detour/QueryResults/Result.cs @@ -18,7 +18,7 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. */ -namespace DotRecast.Detour +namespace DotRecast.Detour.QueryResults { public static class Results { diff --git a/src/DotRecast.Recast.Demo/Draw/RecastDebugDraw.cs b/src/DotRecast.Recast.Demo/Draw/RecastDebugDraw.cs index 120cd1c..64a4ce6 100644 --- a/src/DotRecast.Recast.Demo/Draw/RecastDebugDraw.cs +++ b/src/DotRecast.Recast.Demo/Draw/RecastDebugDraw.cs @@ -23,6 +23,7 @@ using System.Collections.Generic; using System.Numerics; using DotRecast.Core; using DotRecast.Detour; +using DotRecast.Detour.QueryResults; using DotRecast.Recast.Demo.Builder; using Silk.NET.OpenGL; diff --git a/src/DotRecast.Recast.Demo/Tools/CrowdProfilingTool.cs b/src/DotRecast.Recast.Demo/Tools/CrowdProfilingTool.cs index baca225..3ee32bc 100644 --- a/src/DotRecast.Recast.Demo/Tools/CrowdProfilingTool.cs +++ b/src/DotRecast.Recast.Demo/Tools/CrowdProfilingTool.cs @@ -23,6 +23,7 @@ using System.Linq; using DotRecast.Core; using DotRecast.Detour; using DotRecast.Detour.Crowd; +using DotRecast.Detour.QueryResults; using DotRecast.Recast.Demo.Builder; using DotRecast.Recast.Demo.Draw; using ImGuiNET; diff --git a/src/DotRecast.Recast.Demo/Tools/CrowdTool.cs b/src/DotRecast.Recast.Demo/Tools/CrowdTool.cs index 9180a48..526f124 100644 --- a/src/DotRecast.Recast.Demo/Tools/CrowdTool.cs +++ b/src/DotRecast.Recast.Demo/Tools/CrowdTool.cs @@ -25,6 +25,7 @@ using DotRecast.Core; using DotRecast.Detour; using DotRecast.Detour.Crowd; using DotRecast.Detour.Crowd.Tracking; +using DotRecast.Detour.QueryResults; using DotRecast.Recast.Demo.Builder; using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Geom; diff --git a/src/DotRecast.Recast.Demo/Tools/TestNavmeshTool.cs b/src/DotRecast.Recast.Demo/Tools/TestNavmeshTool.cs index c37caac..f18cb2f 100644 --- a/src/DotRecast.Recast.Demo/Tools/TestNavmeshTool.cs +++ b/src/DotRecast.Recast.Demo/Tools/TestNavmeshTool.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using DotRecast.Core; using DotRecast.Detour; +using DotRecast.Detour.QueryResults; using DotRecast.Recast.Demo.Builder; using DotRecast.Recast.Demo.Draw; using ImGuiNET; diff --git a/test/DotRecast.Detour.Crowd.Test/AbstractCrowdTest.cs b/test/DotRecast.Detour.Crowd.Test/AbstractCrowdTest.cs index 77a1094..65de701 100644 --- a/test/DotRecast.Detour.Crowd.Test/AbstractCrowdTest.cs +++ b/test/DotRecast.Detour.Crowd.Test/AbstractCrowdTest.cs @@ -21,6 +21,7 @@ freely, subject to the following restrictions: using System; using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Crowd.Test; diff --git a/test/DotRecast.Detour.Crowd.Test/PathCorridorTest.cs b/test/DotRecast.Detour.Crowd.Test/PathCorridorTest.cs index 4252baf..a968539 100644 --- a/test/DotRecast.Detour.Crowd.Test/PathCorridorTest.cs +++ b/test/DotRecast.Detour.Crowd.Test/PathCorridorTest.cs @@ -18,6 +18,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; using Moq; using NUnit.Framework; diff --git a/test/DotRecast.Detour.Dynamic.Test/DynamicNavMeshTest.cs b/test/DotRecast.Detour.Dynamic.Test/DynamicNavMeshTest.cs index 141f969..3a1b334 100644 --- a/test/DotRecast.Detour.Dynamic.Test/DynamicNavMeshTest.cs +++ b/test/DotRecast.Detour.Dynamic.Test/DynamicNavMeshTest.cs @@ -4,6 +4,7 @@ using System.Threading.Tasks; using DotRecast.Core; using DotRecast.Detour.Dynamic.Colliders; using DotRecast.Detour.Dynamic.Io; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Dynamic.Test; diff --git a/test/DotRecast.Detour.Extras.Test/Unity/Astar/UnityAStarPathfindingImporterTest.cs b/test/DotRecast.Detour.Extras.Test/Unity/Astar/UnityAStarPathfindingImporterTest.cs index 2120873..3152e60 100644 --- a/test/DotRecast.Detour.Extras.Test/Unity/Astar/UnityAStarPathfindingImporterTest.cs +++ b/test/DotRecast.Detour.Extras.Test/Unity/Astar/UnityAStarPathfindingImporterTest.cs @@ -22,6 +22,7 @@ using System.Linq; using DotRecast.Core; using DotRecast.Detour.Extras.Unity.Astar; using DotRecast.Detour.Io; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Extras.Test.Unity.Astar; diff --git a/test/DotRecast.Detour.Test/FindDistanceToWallTest.cs b/test/DotRecast.Detour.Test/FindDistanceToWallTest.cs index f95d945..ac583ca 100644 --- a/test/DotRecast.Detour.Test/FindDistanceToWallTest.cs +++ b/test/DotRecast.Detour.Test/FindDistanceToWallTest.cs @@ -17,6 +17,7 @@ freely, subject to the following restrictions: */ using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Test; diff --git a/test/DotRecast.Detour.Test/FindLocalNeighbourhoodTest.cs b/test/DotRecast.Detour.Test/FindLocalNeighbourhoodTest.cs index b7dd9bb..9766771 100644 --- a/test/DotRecast.Detour.Test/FindLocalNeighbourhoodTest.cs +++ b/test/DotRecast.Detour.Test/FindLocalNeighbourhoodTest.cs @@ -17,6 +17,7 @@ freely, subject to the following restrictions: */ using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Test; diff --git a/test/DotRecast.Detour.Test/FindNearestPolyTest.cs b/test/DotRecast.Detour.Test/FindNearestPolyTest.cs index ab4ee7f..f9d501c 100644 --- a/test/DotRecast.Detour.Test/FindNearestPolyTest.cs +++ b/test/DotRecast.Detour.Test/FindNearestPolyTest.cs @@ -17,6 +17,7 @@ freely, subject to the following restrictions: */ using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Test; diff --git a/test/DotRecast.Detour.Test/FindPathTest.cs b/test/DotRecast.Detour.Test/FindPathTest.cs index 87ef975..f35c535 100644 --- a/test/DotRecast.Detour.Test/FindPathTest.cs +++ b/test/DotRecast.Detour.Test/FindPathTest.cs @@ -18,6 +18,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Test; diff --git a/test/DotRecast.Detour.Test/FindPolysAroundCircleTest.cs b/test/DotRecast.Detour.Test/FindPolysAroundCircleTest.cs index e37551a..7631bf3 100644 --- a/test/DotRecast.Detour.Test/FindPolysAroundCircleTest.cs +++ b/test/DotRecast.Detour.Test/FindPolysAroundCircleTest.cs @@ -17,6 +17,7 @@ freely, subject to the following restrictions: */ using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Test; diff --git a/test/DotRecast.Detour.Test/FindPolysAroundShapeTest.cs b/test/DotRecast.Detour.Test/FindPolysAroundShapeTest.cs index 42bc73c..faeb0cc 100644 --- a/test/DotRecast.Detour.Test/FindPolysAroundShapeTest.cs +++ b/test/DotRecast.Detour.Test/FindPolysAroundShapeTest.cs @@ -17,6 +17,7 @@ freely, subject to the following restrictions: */ using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Test; diff --git a/test/DotRecast.Detour.Test/GetPolyWallSegmentsTest.cs b/test/DotRecast.Detour.Test/GetPolyWallSegmentsTest.cs index ef882ad..90d0861 100644 --- a/test/DotRecast.Detour.Test/GetPolyWallSegmentsTest.cs +++ b/test/DotRecast.Detour.Test/GetPolyWallSegmentsTest.cs @@ -16,6 +16,7 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. */ +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Test; diff --git a/test/DotRecast.Detour.Test/MoveAlongSurfaceTest.cs b/test/DotRecast.Detour.Test/MoveAlongSurfaceTest.cs index b6d2aa2..ae67201 100644 --- a/test/DotRecast.Detour.Test/MoveAlongSurfaceTest.cs +++ b/test/DotRecast.Detour.Test/MoveAlongSurfaceTest.cs @@ -17,6 +17,7 @@ freely, subject to the following restrictions: */ using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Test; diff --git a/test/DotRecast.Detour.Test/RandomPointTest.cs b/test/DotRecast.Detour.Test/RandomPointTest.cs index 3141502..fea5923 100644 --- a/test/DotRecast.Detour.Test/RandomPointTest.cs +++ b/test/DotRecast.Detour.Test/RandomPointTest.cs @@ -19,6 +19,7 @@ freely, subject to the following restrictions: using System; using System.Diagnostics; using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; using static DotRecast.Core.RecastMath; diff --git a/test/DotRecast.Detour.Test/TiledFindPathTest.cs b/test/DotRecast.Detour.Test/TiledFindPathTest.cs index 7c4d88f..ef71f8e 100644 --- a/test/DotRecast.Detour.Test/TiledFindPathTest.cs +++ b/test/DotRecast.Detour.Test/TiledFindPathTest.cs @@ -18,6 +18,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; using NUnit.Framework; namespace DotRecast.Detour.Test; diff --git a/test/DotRecast.Detour.TileCache.Test/TileCacheFindPathTest.cs b/test/DotRecast.Detour.TileCache.Test/TileCacheFindPathTest.cs index 07d1a51..0a983f7 100644 --- a/test/DotRecast.Detour.TileCache.Test/TileCacheFindPathTest.cs +++ b/test/DotRecast.Detour.TileCache.Test/TileCacheFindPathTest.cs @@ -21,6 +21,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; using System.IO; using DotRecast.Core; +using DotRecast.Detour.QueryResults; using DotRecast.Detour.TileCache.Io; using NUnit.Framework; diff --git a/test/DotRecast.Detour.TileCache.Test/TileCacheNavigationTest.cs b/test/DotRecast.Detour.TileCache.Test/TileCacheNavigationTest.cs index d83e51e..404f0d1 100644 --- a/test/DotRecast.Detour.TileCache.Test/TileCacheNavigationTest.cs +++ b/test/DotRecast.Detour.TileCache.Test/TileCacheNavigationTest.cs @@ -20,6 +20,7 @@ freely, subject to the following restrictions: using System.Collections.Generic; using DotRecast.Core; +using DotRecast.Detour.QueryResults; using DotRecast.Recast; using DotRecast.Recast.Geom; using NUnit.Framework;