remove unused using

This commit is contained in:
ikpil 2023-09-13 23:34:26 +09:00
parent e8d14375e5
commit 5dd6f5f910
5 changed files with 0 additions and 9 deletions

View File

@ -1,5 +1,4 @@
using System;
using System.Numerics;
namespace DotRecast.Core
{

View File

@ -19,7 +19,6 @@ freely, subject to the following restrictions:
*/
using System;
using System.Numerics;
using Silk.NET.OpenGL;
using DotRecast.Core;
using DotRecast.Recast.Toolset.Builder;

View File

@ -3,9 +3,7 @@ using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using DotRecast.Recast.Demo.Logging.Sinks;
using DotRecast.Recast.Demo.Tools;
using DotRecast.Recast.Demo.UI.ViewModels;
using ImGuiNET;

View File

@ -17,14 +17,11 @@ freely, subject to the following restrictions:
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Numerics;
using DotRecast.Core;
using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.Demo.Messages;
using DotRecast.Recast.Toolset;
using ImGuiNET;
using Serilog;

View File

@ -18,11 +18,9 @@ freely, subject to the following restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
using System;
using System.Numerics;
using DotRecast.Core;
using DotRecast.Recast.Demo.Tools;
using DotRecast.Recast.Toolset;
using ImGuiNET;
namespace DotRecast.Recast.Demo.UI;