forked from mirror/DotRecast
rename for unity3d
This commit is contained in:
parent
cab865f747
commit
77153ddb25
|
@ -35,9 +35,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotRecast.Detour.TileCache.
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotRecast.Recast.Demo", "src\DotRecast.Recast.Demo\DotRecast.Recast.Demo.csproj", "{023E1E6A-4895-4573-89AE-3D5D8E0B39C8}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{65754308-3C9B-4544-9D7B-F2C16A4E2486}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotRecast.Recast.DemoTool", "src\DotRecast.Recast.DemoTool\DotRecast.Recast.DemoTool.csproj", "{DF987948-8C23-4337-AF83-D87D6407518D}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotRecast.Recast.Toolset", "src\DotRecast.Recast.Toolset\DotRecast.Recast.Toolset.csproj", "{DF987948-8C23-4337-AF83-D87D6407518D}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\DotRecast.Recast.DemoTool\DotRecast.Recast.DemoTool.csproj" />
|
||||
<ProjectReference Include="..\DotRecast.Recast.Toolset\DotRecast.Recast.Toolset.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -20,7 +20,7 @@ freely, subject to the following restrictions:
|
|||
|
||||
using System;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using Silk.NET.OpenGL;
|
||||
|
||||
namespace DotRecast.Recast.Demo.Draw;
|
||||
|
|
|
@ -22,10 +22,10 @@ using System.Collections.Generic;
|
|||
using System.Diagnostics.Tracing;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Detour;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.DemoTool.Geom;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using DotRecast.Recast.Toolset.Geom;
|
||||
using DotRecast.Recast.Demo.UI;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.Toolset;
|
||||
|
||||
namespace DotRecast.Recast.Demo.Draw;
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ using System.Numerics;
|
|||
using DotRecast.Core;
|
||||
using DotRecast.Detour;
|
||||
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using Silk.NET.OpenGL;
|
||||
|
||||
namespace DotRecast.Recast.Demo.Draw;
|
||||
|
|
|
@ -35,14 +35,13 @@ using DotRecast.Core;
|
|||
using DotRecast.Detour;
|
||||
using DotRecast.Detour.Extras.Unity.Astar;
|
||||
using DotRecast.Detour.Io;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.Demo.Messages;
|
||||
using DotRecast.Recast.DemoTool.Geom;
|
||||
using DotRecast.Recast.Toolset.Geom;
|
||||
using DotRecast.Recast.Demo.Tools;
|
||||
using DotRecast.Recast.Demo.UI;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using Silk.NET.GLFW;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using static DotRecast.Core.RcMath;
|
||||
using MouseButton = Silk.NET.Input.MouseButton;
|
||||
using Window = Silk.NET.Windowing.Window;
|
||||
|
|
|
@ -21,11 +21,11 @@ freely, subject to the following restrictions:
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.DemoTool.Geom;
|
||||
using DotRecast.Recast.DemoTool.Tools;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using DotRecast.Recast.Toolset.Geom;
|
||||
using DotRecast.Recast.Toolset.Tools;
|
||||
using ImGuiNET;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDraw;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;
|
||||
|
|
|
@ -22,10 +22,10 @@ using System.Linq;
|
|||
using DotRecast.Core;
|
||||
using DotRecast.Detour;
|
||||
using DotRecast.Detour.Crowd;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.DemoTool.Tools;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using DotRecast.Recast.Toolset.Tools;
|
||||
using ImGuiNET;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDraw;
|
||||
|
||||
|
|
|
@ -25,10 +25,10 @@ using DotRecast.Detour;
|
|||
using DotRecast.Detour.Crowd;
|
||||
using DotRecast.Detour.Crowd.Tracking;
|
||||
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.DemoTool.Tools;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using DotRecast.Recast.Toolset.Tools;
|
||||
using ImGuiNET;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDraw;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;
|
||||
|
|
|
@ -25,13 +25,13 @@ using DotRecast.Core;
|
|||
using DotRecast.Detour.Dynamic;
|
||||
using DotRecast.Detour.Dynamic.Colliders;
|
||||
using DotRecast.Detour.Dynamic.Io;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
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.UI;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.DemoTool.Tools;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using DotRecast.Recast.Toolset.Tools;
|
||||
using ImGuiNET;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDraw;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;
|
||||
|
|
|
@ -20,7 +20,7 @@ freely, subject to the following restrictions:
|
|||
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.Toolset;
|
||||
|
||||
namespace DotRecast.Recast.Demo.Tools;
|
||||
|
||||
|
|
|
@ -19,11 +19,11 @@ freely, subject to the following restrictions:
|
|||
using System.Collections.Generic;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Detour.Extras.Jumplink;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.DemoTool.Geom;
|
||||
using DotRecast.Recast.DemoTool.Tools;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using DotRecast.Recast.Toolset.Geom;
|
||||
using DotRecast.Recast.Toolset.Tools;
|
||||
using ImGuiNET;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDraw;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using DotRecast.Core;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.DemoTool.Tools;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using DotRecast.Recast.Toolset.Tools;
|
||||
using ImGuiNET;
|
||||
using Serilog;
|
||||
|
||||
|
|
|
@ -20,11 +20,11 @@ freely, subject to the following restrictions:
|
|||
|
||||
using System;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.DemoTool.Geom;
|
||||
using DotRecast.Recast.DemoTool.Tools;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using DotRecast.Recast.Toolset.Geom;
|
||||
using DotRecast.Recast.Toolset.Tools;
|
||||
using ImGuiNET;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDraw;
|
||||
|
||||
|
|
|
@ -2,10 +2,10 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Detour;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.DemoTool.Tools;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using DotRecast.Recast.Toolset.Tools;
|
||||
using ImGuiNET;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDraw;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
using System;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.DemoTool.Tools;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using DotRecast.Recast.Toolset.Tools;
|
||||
using ImGuiNET;
|
||||
using Serilog;
|
||||
using static DotRecast.Recast.Demo.Draw.DebugDraw;
|
||||
|
|
|
@ -24,7 +24,7 @@ using System.Numerics;
|
|||
using DotRecast.Core;
|
||||
using DotRecast.Recast.Demo.Draw;
|
||||
using DotRecast.Recast.Demo.Messages;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using ImGuiNET;
|
||||
using Serilog;
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ using System;
|
|||
using System.Numerics;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Recast.Demo.Tools;
|
||||
using DotRecast.Recast.DemoTool;
|
||||
using DotRecast.Recast.Toolset;
|
||||
using ImGuiNET;
|
||||
|
||||
namespace DotRecast.Recast.Demo.UI;
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
using DotRecast.Detour;
|
||||
using DotRecast.Recast.DemoTool.Geom;
|
||||
using DotRecast.Recast.Geom;
|
||||
using DotRecast.Recast.Toolset.Geom;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Builder
|
||||
namespace DotRecast.Recast.Toolset.Builder
|
||||
{
|
||||
public static class DemoNavMeshBuilder
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using DotRecast.Detour;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Builder
|
||||
namespace DotRecast.Recast.Toolset.Builder
|
||||
{
|
||||
public class NavMeshBuildResult
|
||||
{
|
|
@ -21,7 +21,7 @@ freely, subject to the following restrictions:
|
|||
using System.Collections.Immutable;
|
||||
using System.Linq;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Builder
|
||||
namespace DotRecast.Recast.Toolset.Builder
|
||||
{
|
||||
public class SampleAreaModifications
|
||||
{
|
|
@ -20,9 +20,9 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Immutable;
|
||||
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
|
||||
{
|
|
@ -20,9 +20,9 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
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
|
||||
{
|
|
@ -1,8 +1,8 @@
|
|||
using System;
|
||||
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
|
||||
{
|
|
@ -24,7 +24,7 @@ using System.Collections.Immutable;
|
|||
using DotRecast.Core;
|
||||
using DotRecast.Recast.Geom;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Geom
|
||||
namespace DotRecast.Recast.Toolset.Geom
|
||||
{
|
||||
public class DemoInputGeomProvider : IInputGeomProvider
|
||||
{
|
|
@ -20,7 +20,7 @@ freely, subject to the following restrictions:
|
|||
|
||||
using DotRecast.Core;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Geom
|
||||
namespace DotRecast.Recast.Toolset.Geom
|
||||
{
|
||||
public class DemoOffMeshConnection
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace DotRecast.Recast.DemoTool
|
||||
namespace DotRecast.Recast.Toolset
|
||||
{
|
||||
public interface ISampleTool
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace DotRecast.Recast.DemoTool
|
||||
namespace DotRecast.Recast.Toolset
|
||||
{
|
||||
public class RcNavMeshBuildSettings
|
||||
{
|
|
@ -21,9 +21,9 @@ freely, subject to the following restrictions:
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using DotRecast.Detour;
|
||||
using DotRecast.Recast.DemoTool.Geom;
|
||||
using DotRecast.Recast.Toolset.Geom;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool
|
||||
namespace DotRecast.Recast.Toolset
|
||||
{
|
||||
public class Sample
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using DotRecast.Core;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class ConvexVolumeToolImpl : ISampleTool
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
using DotRecast.Core;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class CrowdAgentData
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class CrowdAgentTrail
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public enum CrowdAgentType
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class CrowdToolImpl : ISampleTool
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
using System.Collections.Immutable;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class CrowdToolMode
|
||||
{
|
|
@ -16,7 +16,7 @@ freely, subject to the following restrictions:
|
|||
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
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public enum DynamicColliderShape
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class DynamicUpdateToolImpl : ISampleTool
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
using System.Collections.Immutable;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class DynamicUpdateToolMode
|
||||
{
|
|
@ -1,10 +1,10 @@
|
|||
using System.Collections.Generic;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Detour.Extras.Jumplink;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.DemoTool.Geom;
|
||||
using DotRecast.Recast.Toolset.Builder;
|
||||
using DotRecast.Recast.Toolset.Geom;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class JumpLinkBuilderToolImpl : ISampleTool
|
||||
{
|
|
@ -18,7 +18,7 @@ freely, subject to the following restrictions:
|
|||
|
||||
using DotRecast.Detour.Extras.Jumplink;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class JumpLinkBuilderToolOption
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using DotRecast.Core;
|
||||
using DotRecast.Detour.TileCache;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class ObstacleToolImpl : ISampleTool
|
||||
{
|
|
@ -1,10 +1,10 @@
|
|||
using System;
|
||||
using DotRecast.Core;
|
||||
using DotRecast.Recast.DemoTool.Builder;
|
||||
using DotRecast.Recast.DemoTool.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
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class OffMeshConnectionToolOption
|
||||
{
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using DotRecast.Core;
|
||||
using DotRecast.Detour;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class TestNavmeshToolImpl : ISampleTool
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
using System.Collections.Immutable;
|
||||
|
||||
namespace DotRecast.Recast.DemoTool.Tools
|
||||
namespace DotRecast.Recast.Toolset.Tools
|
||||
{
|
||||
public class TestNavmeshToolMode
|
||||
{
|
|
@ -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
|
||||
{
|
|
@ -1,9 +1,9 @@
|
|||
using System.Linq;
|
||||
using System.Collections.Immutable;
|
||||
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
|
||||
{
|
Loading…
Reference in New Issue