mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-21 01:39:32 +00:00
Fix namespaces
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user