From 235178be3daaf8acb1fdc8d31129d63e1af3a5d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20M=C3=BCller?= Date: Wed, 27 Aug 2025 17:57:04 +0200 Subject: [PATCH] Rename file BoundingBox to BoundingBox2 and remove dedicated namespace for it --- BoundingBox.cs => BoundingBox2.cs | 2 +- IWorldObject.cs | 3 +-- Quadtree.cs | 4 +--- QuadtreeQuery.cs | 4 +--- 4 files changed, 4 insertions(+), 9 deletions(-) rename BoundingBox.cs => BoundingBox2.cs (98%) diff --git a/BoundingBox.cs b/BoundingBox2.cs similarity index 98% rename from BoundingBox.cs rename to BoundingBox2.cs index 9d2f037..454de61 100644 --- a/BoundingBox.cs +++ b/BoundingBox2.cs @@ -1,6 +1,6 @@ using System.Numerics; -namespace BoundingBox +namespace Quadtree { public enum IntersectionType { Contains, Intersects, Disjoint } diff --git a/IWorldObject.cs b/IWorldObject.cs index 274d649..760a2ed 100644 --- a/IWorldObject.cs +++ b/IWorldObject.cs @@ -1,5 +1,4 @@ -using BoundingBox; -using System.Numerics; +using System.Numerics; namespace Quadtree { diff --git a/Quadtree.cs b/Quadtree.cs index 2acaac9..acd0cce 100644 --- a/Quadtree.cs +++ b/Quadtree.cs @@ -1,6 +1,4 @@ -using BoundingBox; -using System.Collections.Generic; -using System.Numerics; +using System.Numerics; namespace Quadtree { diff --git a/QuadtreeQuery.cs b/QuadtreeQuery.cs index 7640c83..7e0ad76 100644 --- a/QuadtreeQuery.cs +++ b/QuadtreeQuery.cs @@ -1,6 +1,4 @@ -using BoundingBox; - -namespace Quadtree +namespace Quadtree { internal struct QuadtreeQuery {