From 3a3778651dc14dc3812fa9cf502f5237f4adefd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Sun, 17 Dec 2023 18:47:29 +0100 Subject: [PATCH] ScriptCore: Moved Physics2D into Physics namespace --- ScriptCore/{ => Physics}/Physics2D.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename ScriptCore/{ => Physics}/Physics2D.cs (93%) diff --git a/ScriptCore/Physics2D.cs b/ScriptCore/Physics/Physics2D.cs similarity index 93% rename from ScriptCore/Physics2D.cs rename to ScriptCore/Physics/Physics2D.cs index 73a3f86..09e7b69 100644 --- a/ScriptCore/Physics2D.cs +++ b/ScriptCore/Physics/Physics2D.cs @@ -1,6 +1,6 @@ using GlitchyEngine.Math; -namespace GlitchyEngine; +namespace GlitchyEngine.Physics; /// /// Allows changing the properties of the 2D physics simulation in the current scene.