rename for unity3d

This commit is contained in:
ikpil 2023-08-04 23:08:29 +09:00
parent cab865f747
commit 77153ddb25
49 changed files with 83 additions and 86 deletions

View File

@ -35,9 +35,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotRecast.Detour.TileCache.
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotRecast.Recast.Demo", "src\DotRecast.Recast.Demo\DotRecast.Recast.Demo.csproj", "{023E1E6A-4895-4573-89AE-3D5D8E0B39C8}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotRecast.Recast.Demo", "src\DotRecast.Recast.Demo\DotRecast.Recast.Demo.csproj", "{023E1E6A-4895-4573-89AE-3D5D8E0B39C8}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{65754308-3C9B-4544-9D7B-F2C16A4E2486}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotRecast.Recast.Toolset", "src\DotRecast.Recast.Toolset\DotRecast.Recast.Toolset.csproj", "{DF987948-8C23-4337-AF83-D87D6407518D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotRecast.Recast.DemoTool", "src\DotRecast.Recast.DemoTool\DotRecast.Recast.DemoTool.csproj", "{DF987948-8C23-4337-AF83-D87D6407518D}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -18,7 +18,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\DotRecast.Recast.DemoTool\DotRecast.Recast.DemoTool.csproj" /> <ProjectReference Include="..\DotRecast.Recast.Toolset\DotRecast.Recast.Toolset.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -20,7 +20,7 @@ freely, subject to the following restrictions:
using System; using System;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using Silk.NET.OpenGL; using Silk.NET.OpenGL;
namespace DotRecast.Recast.Demo.Draw; namespace DotRecast.Recast.Demo.Draw;

View File

@ -22,10 +22,10 @@ using System.Collections.Generic;
using System.Diagnostics.Tracing; using System.Diagnostics.Tracing;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Detour; using DotRecast.Detour;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
using DotRecast.Recast.Demo.UI; using DotRecast.Recast.Demo.UI;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
namespace DotRecast.Recast.Demo.Draw; namespace DotRecast.Recast.Demo.Draw;

View File

@ -24,7 +24,7 @@ using System.Numerics;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Detour; using DotRecast.Detour;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using Silk.NET.OpenGL; using Silk.NET.OpenGL;
namespace DotRecast.Recast.Demo.Draw; namespace DotRecast.Recast.Demo.Draw;

View File

@ -35,14 +35,13 @@ using DotRecast.Core;
using DotRecast.Detour; using DotRecast.Detour;
using DotRecast.Detour.Extras.Unity.Astar; using DotRecast.Detour.Extras.Unity.Astar;
using DotRecast.Detour.Io; using DotRecast.Detour.Io;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.Demo.Messages; using DotRecast.Recast.Demo.Messages;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
using DotRecast.Recast.Demo.Tools; using DotRecast.Recast.Demo.Tools;
using DotRecast.Recast.Demo.UI; using DotRecast.Recast.Demo.UI;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using Silk.NET.GLFW;
using static DotRecast.Core.RcMath; using static DotRecast.Core.RcMath;
using MouseButton = Silk.NET.Input.MouseButton; using MouseButton = Silk.NET.Input.MouseButton;
using Window = Silk.NET.Windowing.Window; using Window = Silk.NET.Windowing.Window;

View File

@ -21,11 +21,11 @@ freely, subject to the following restrictions:
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
using DotRecast.Recast.DemoTool.Tools; using DotRecast.Recast.Toolset.Tools;
using ImGuiNET; using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw; using static DotRecast.Recast.Demo.Draw.DebugDraw;
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives; using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;

View File

@ -22,10 +22,10 @@ using System.Linq;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Detour; using DotRecast.Detour;
using DotRecast.Detour.Crowd; using DotRecast.Detour.Crowd;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using DotRecast.Recast.DemoTool.Tools; using DotRecast.Recast.Toolset.Tools;
using ImGuiNET; using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw; using static DotRecast.Recast.Demo.Draw.DebugDraw;

View File

@ -25,10 +25,10 @@ using DotRecast.Detour;
using DotRecast.Detour.Crowd; using DotRecast.Detour.Crowd;
using DotRecast.Detour.Crowd.Tracking; using DotRecast.Detour.Crowd.Tracking;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using DotRecast.Recast.DemoTool.Tools; using DotRecast.Recast.Toolset.Tools;
using ImGuiNET; using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw; using static DotRecast.Recast.Demo.Draw.DebugDraw;
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives; using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;

View File

@ -25,13 +25,13 @@ using DotRecast.Core;
using DotRecast.Detour.Dynamic; using DotRecast.Detour.Dynamic;
using DotRecast.Detour.Dynamic.Colliders; using DotRecast.Detour.Dynamic.Colliders;
using DotRecast.Detour.Dynamic.Io; using DotRecast.Detour.Dynamic.Io;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
using DotRecast.Recast.Demo.Tools.Gizmos; using DotRecast.Recast.Demo.Tools.Gizmos;
using DotRecast.Recast.Demo.UI; using DotRecast.Recast.Demo.UI;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using DotRecast.Recast.DemoTool.Tools; using DotRecast.Recast.Toolset.Tools;
using ImGuiNET; using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw; using static DotRecast.Recast.Demo.Draw.DebugDraw;
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives; using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;

View File

@ -20,7 +20,7 @@ freely, subject to the following restrictions:
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
namespace DotRecast.Recast.Demo.Tools; namespace DotRecast.Recast.Demo.Tools;

View File

@ -19,11 +19,11 @@ freely, subject to the following restrictions:
using System.Collections.Generic; using System.Collections.Generic;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Detour.Extras.Jumplink; using DotRecast.Detour.Extras.Jumplink;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
using DotRecast.Recast.DemoTool.Tools; using DotRecast.Recast.Toolset.Tools;
using ImGuiNET; using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw; using static DotRecast.Recast.Demo.Draw.DebugDraw;
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives; using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;

View File

@ -1,7 +1,7 @@
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using DotRecast.Recast.DemoTool.Tools; using DotRecast.Recast.Toolset.Tools;
using ImGuiNET; using ImGuiNET;
using Serilog; using Serilog;

View File

@ -20,11 +20,11 @@ freely, subject to the following restrictions:
using System; using System;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
using DotRecast.Recast.DemoTool.Tools; using DotRecast.Recast.Toolset.Tools;
using ImGuiNET; using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw; using static DotRecast.Recast.Demo.Draw.DebugDraw;

View File

@ -2,10 +2,10 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Detour; using DotRecast.Detour;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using DotRecast.Recast.DemoTool.Tools; using DotRecast.Recast.Toolset.Tools;
using ImGuiNET; using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw; using static DotRecast.Recast.Demo.Draw.DebugDraw;
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives; using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;

View File

@ -1,8 +1,8 @@
using System; using System;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using DotRecast.Recast.DemoTool.Tools; using DotRecast.Recast.Toolset.Tools;
using ImGuiNET; using ImGuiNET;
using Serilog; using Serilog;
using static DotRecast.Recast.Demo.Draw.DebugDraw; using static DotRecast.Recast.Demo.Draw.DebugDraw;

View File

@ -24,7 +24,7 @@ using System.Numerics;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.Demo.Draw; using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.Demo.Messages; using DotRecast.Recast.Demo.Messages;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using ImGuiNET; using ImGuiNET;
using Serilog; using Serilog;

View File

@ -22,7 +22,7 @@ using System;
using System.Numerics; using System.Numerics;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.Demo.Tools; using DotRecast.Recast.Demo.Tools;
using DotRecast.Recast.DemoTool; using DotRecast.Recast.Toolset;
using ImGuiNET; using ImGuiNET;
namespace DotRecast.Recast.Demo.UI; namespace DotRecast.Recast.Demo.UI;

View File

@ -1,8 +1,8 @@
using DotRecast.Detour; using DotRecast.Detour;
using DotRecast.Recast.DemoTool.Geom;
using DotRecast.Recast.Geom; using DotRecast.Recast.Geom;
using DotRecast.Recast.Toolset.Geom;
namespace DotRecast.Recast.DemoTool.Builder namespace DotRecast.Recast.Toolset.Builder
{ {
public static class DemoNavMeshBuilder public static class DemoNavMeshBuilder
{ {

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using DotRecast.Detour; using DotRecast.Detour;
namespace DotRecast.Recast.DemoTool.Builder namespace DotRecast.Recast.Toolset.Builder
{ {
public class NavMeshBuildResult public class NavMeshBuildResult
{ {

View File

@ -21,7 +21,7 @@ freely, subject to the following restrictions:
using System.Collections.Immutable; using System.Collections.Immutable;
using System.Linq; using System.Linq;
namespace DotRecast.Recast.DemoTool.Builder namespace DotRecast.Recast.Toolset.Builder
{ {
public class SampleAreaModifications public class SampleAreaModifications
{ {

View File

@ -20,9 +20,9 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.Immutable; using System.Collections.Immutable;
using DotRecast.Detour; using DotRecast.Detour;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
namespace DotRecast.Recast.DemoTool.Builder namespace DotRecast.Recast.Toolset.Builder
{ {
public class SoloNavMeshBuilder public class SoloNavMeshBuilder
{ {

View File

@ -20,9 +20,9 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using DotRecast.Detour; using DotRecast.Detour;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
namespace DotRecast.Recast.DemoTool.Builder namespace DotRecast.Recast.Toolset.Builder
{ {
public class TileNavMeshBuilder public class TileNavMeshBuilder
{ {

View File

@ -1,8 +1,8 @@
using System; using System;
using System.IO; using System.IO;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
namespace DotRecast.Recast.DemoTool namespace DotRecast.Recast.Toolset
{ {
public static class DemoObjImporter public static class DemoObjImporter
{ {

View File

@ -24,7 +24,7 @@ using System.Collections.Immutable;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.Geom; using DotRecast.Recast.Geom;
namespace DotRecast.Recast.DemoTool.Geom namespace DotRecast.Recast.Toolset.Geom
{ {
public class DemoInputGeomProvider : IInputGeomProvider public class DemoInputGeomProvider : IInputGeomProvider
{ {

View File

@ -20,7 +20,7 @@ freely, subject to the following restrictions:
using DotRecast.Core; using DotRecast.Core;
namespace DotRecast.Recast.DemoTool.Geom namespace DotRecast.Recast.Toolset.Geom
{ {
public class DemoOffMeshConnection public class DemoOffMeshConnection
{ {

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool namespace DotRecast.Recast.Toolset
{ {
public interface ISampleTool public interface ISampleTool
{ {

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool namespace DotRecast.Recast.Toolset
{ {
public class RcNavMeshBuildSettings public class RcNavMeshBuildSettings
{ {

View File

@ -21,9 +21,9 @@ freely, subject to the following restrictions:
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using DotRecast.Detour; using DotRecast.Detour;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
namespace DotRecast.Recast.DemoTool namespace DotRecast.Recast.Toolset
{ {
public class Sample public class Sample
{ {

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using DotRecast.Core; using DotRecast.Core;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class ConvexVolumeToolImpl : ISampleTool public class ConvexVolumeToolImpl : ISampleTool
{ {

View File

@ -1,6 +1,6 @@
using DotRecast.Core; using DotRecast.Core;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class CrowdAgentData public class CrowdAgentData
{ {

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class CrowdAgentTrail public class CrowdAgentTrail
{ {

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public enum CrowdAgentType public enum CrowdAgentType
{ {

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class CrowdToolImpl : ISampleTool public class CrowdToolImpl : ISampleTool
{ {

View File

@ -1,6 +1,6 @@
using System.Collections.Immutable; using System.Collections.Immutable;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class CrowdToolMode public class CrowdToolMode
{ {

View File

@ -16,7 +16,7 @@ freely, subject to the following restrictions:
3. This notice may not be removed or altered from any source distribution. 3. This notice may not be removed or altered from any source distribution.
*/ */
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class CrowdToolParams public class CrowdToolParams
{ {

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public enum DynamicColliderShape public enum DynamicColliderShape
{ {

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class DynamicUpdateToolImpl : ISampleTool public class DynamicUpdateToolImpl : ISampleTool
{ {

View File

@ -1,6 +1,6 @@
using System.Collections.Immutable; using System.Collections.Immutable;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class DynamicUpdateToolMode public class DynamicUpdateToolMode
{ {

View File

@ -1,10 +1,10 @@
using System.Collections.Generic; using System.Collections.Generic;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Detour.Extras.Jumplink; using DotRecast.Detour.Extras.Jumplink;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.DemoTool.Geom; using DotRecast.Recast.Toolset.Geom;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class JumpLinkBuilderToolImpl : ISampleTool public class JumpLinkBuilderToolImpl : ISampleTool
{ {

View File

@ -18,7 +18,7 @@ freely, subject to the following restrictions:
using DotRecast.Detour.Extras.Jumplink; using DotRecast.Detour.Extras.Jumplink;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class JumpLinkBuilderToolOption public class JumpLinkBuilderToolOption
{ {

View File

@ -1,7 +1,7 @@
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Detour.TileCache; using DotRecast.Detour.TileCache;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class ObstacleToolImpl : ISampleTool public class ObstacleToolImpl : ISampleTool
{ {

View File

@ -1,10 +1,10 @@
using System; using System;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.DemoTool.Builder;
using DotRecast.Recast.DemoTool.Geom;
using DotRecast.Recast.Geom; using DotRecast.Recast.Geom;
using DotRecast.Recast.Toolset.Builder;
using DotRecast.Recast.Toolset.Geom;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class OffMeshConnectionToolImpl : ISampleTool public class OffMeshConnectionToolImpl : ISampleTool
{ {

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class OffMeshConnectionToolOption public class OffMeshConnectionToolOption
{ {

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Detour; using DotRecast.Detour;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class TestNavmeshToolImpl : ISampleTool public class TestNavmeshToolImpl : ISampleTool
{ {

View File

@ -1,6 +1,6 @@
using System.Collections.Immutable; using System.Collections.Immutable;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class TestNavmeshToolMode public class TestNavmeshToolMode
{ {

View File

@ -1,6 +1,6 @@
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class TestNavmeshToolOption public class TestNavmeshToolOption
{ {

View File

@ -1,9 +1,9 @@
using System.Linq; using System.Linq;
using System.Collections.Immutable; using System.Collections.Immutable;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Recast.DemoTool.Builder; using DotRecast.Recast.Toolset.Builder;
namespace DotRecast.Recast.DemoTool.Tools namespace DotRecast.Recast.Toolset.Tools
{ {
public class TileToolImpl : ISampleTool public class TileToolImpl : ISampleTool
{ {