Tools to proper namespaces

This commit is contained in:
Matt Nadareski
2020-12-17 22:06:30 -08:00
parent 9b5f90a750
commit 0deaa0aed3
3 changed files with 4 additions and 4 deletions

View File

@@ -2,10 +2,9 @@
using System.IO;
using System.Linq;
using System.Numerics;
using NDecrypt.N3DS;
using NDecrypt.N3DS.Headers;
namespace NDecrypt
namespace NDecrypt.N3DS
{
internal class ThreeDSTool : ITool
{

View File

@@ -1,10 +1,9 @@
using System;
using System.IO;
using System.Linq;
using NDecrypt.NDS;
using NDecrypt.NDS.Headers;
namespace NDecrypt
namespace NDecrypt.NDS
{
internal class DSTool : ITool
{

View File

@@ -1,5 +1,7 @@
using System;
using System.IO;
using NDecrypt.N3DS;
using NDecrypt.NDS;
namespace NDecrypt
{