Fix namespaces

This commit is contained in:
Gandifil
2023-11-20 19:28:04 +03:00
parent 65c261171c
commit 6836db47e5
4 changed files with 4 additions and 2 deletions
@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Diagnostics;
using Microsoft.Xna.Framework;
using MonoGame.Extended.Collisions.QuadTree;
namespace MonoGame.Extended.Collisions
{
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
namespace MonoGame.Extended.Collisions
namespace MonoGame.Extended.Collisions.QuadTree
{
/// <summary>
/// Class for doing collision handling with a quad tree.
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Linq;
namespace MonoGame.Extended.Collisions;
namespace MonoGame.Extended.Collisions.QuadTree;
/// <summary>
/// Data structure for the quad tree.
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using MonoGame.Extended.Collisions.QuadTree;
using Xunit;
namespace MonoGame.Extended.Collisions.Tests