diff --git a/Engine.Core/Abstract/Assignable/IAssignable.cs b/Engine.Core/Abstract/Assignable/IAssignable.cs index 04137dc..a571013 100644 --- a/Engine.Core/Abstract/Assignable/IAssignable.cs +++ b/Engine.Core/Abstract/Assignable/IAssignable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Indicates the class implementing it has Assignable fields that are necessary for the engine to work properly. diff --git a/Engine.Core/Abstract/Assignable/IHasBehaviourController.cs b/Engine.Core/Abstract/Assignable/IHasBehaviourController.cs index 496147d..f58357d 100644 --- a/Engine.Core/Abstract/Assignable/IHasBehaviourController.cs +++ b/Engine.Core/Abstract/Assignable/IHasBehaviourController.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Indicates the object is an with an assignable field. diff --git a/Engine.Core/Abstract/Assignable/IHasEntity.cs b/Engine.Core/Abstract/Assignable/IHasEntity.cs index 90e8ec6..13d211c 100644 --- a/Engine.Core/Abstract/Assignable/IHasEntity.cs +++ b/Engine.Core/Abstract/Assignable/IHasEntity.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Indicates the object is an with an assignable field. diff --git a/Engine.Core/Abstract/Assignable/IHasStateEnable.cs b/Engine.Core/Abstract/Assignable/IHasStateEnable.cs index 73561e7..d7a96d0 100644 --- a/Engine.Core/Abstract/Assignable/IHasStateEnable.cs +++ b/Engine.Core/Abstract/Assignable/IHasStateEnable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Indicates the object is an with an assignable field. diff --git a/Engine.Core/Abstract/Assignable/IHasUniverse.cs b/Engine.Core/Abstract/Assignable/IHasUniverse.cs index 1a22111..78f741b 100644 --- a/Engine.Core/Abstract/Assignable/IHasUniverse.cs +++ b/Engine.Core/Abstract/Assignable/IHasUniverse.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Indicates the object is an with an assignable field. diff --git a/Engine.Core/Abstract/Assignable/IHasUniverseObject.cs b/Engine.Core/Abstract/Assignable/IHasUniverseObject.cs index dcba13c..f02753c 100644 --- a/Engine.Core/Abstract/Assignable/IHasUniverseObject.cs +++ b/Engine.Core/Abstract/Assignable/IHasUniverseObject.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Indicates the object is an with an assignable field. diff --git a/Engine.Core/Abstract/IActive.cs b/Engine.Core/Abstract/IActive.cs index 34c7dd3..b8941d5 100644 --- a/Engine.Core/Abstract/IActive.cs +++ b/Engine.Core/Abstract/IActive.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents an entity which can be active or not. diff --git a/Engine.Core/Abstract/IBehaviour.cs b/Engine.Core/Abstract/IBehaviour.cs index 427b05b..695af6f 100644 --- a/Engine.Core/Abstract/IBehaviour.cs +++ b/Engine.Core/Abstract/IBehaviour.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents a behaviour that any object in the engine that might use to interact with itself or other objects. diff --git a/Engine.Core/Abstract/IBehaviour2D.cs b/Engine.Core/Abstract/IBehaviour2D.cs index 558d664..b0918d4 100644 --- a/Engine.Core/Abstract/IBehaviour2D.cs +++ b/Engine.Core/Abstract/IBehaviour2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; public interface IBehaviour2D : IBehaviour { diff --git a/Engine.Core/Abstract/IBehaviourCollector.cs b/Engine.Core/Abstract/IBehaviourCollector.cs index 06e9d4b..51cc16a 100644 --- a/Engine.Core/Abstract/IBehaviourCollector.cs +++ b/Engine.Core/Abstract/IBehaviourCollector.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents a collector for the class type of . diff --git a/Engine.Core/Abstract/IBehaviourController.cs b/Engine.Core/Abstract/IBehaviourController.cs index 6e9b9a3..c5ead04 100644 --- a/Engine.Core/Abstract/IBehaviourController.cs +++ b/Engine.Core/Abstract/IBehaviourController.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents a controller for managing s and notify them accordingly about the engine's updates. Connected to an . diff --git a/Engine.Core/Abstract/ICamera2D.cs b/Engine.Core/Abstract/ICamera2D.cs index 5779092..30bc362 100644 --- a/Engine.Core/Abstract/ICamera2D.cs +++ b/Engine.Core/Abstract/ICamera2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents a 2D camera in the engine. diff --git a/Engine.Core/Abstract/ICoroutineYield.cs b/Engine.Core/Abstract/ICoroutineYield.cs index 1b03404..230ca21 100644 --- a/Engine.Core/Abstract/ICoroutineYield.cs +++ b/Engine.Core/Abstract/ICoroutineYield.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; public interface ICoroutineYield { diff --git a/Engine.Core/Abstract/IEntity.cs b/Engine.Core/Abstract/IEntity.cs index 984603b..7a837c5 100644 --- a/Engine.Core/Abstract/IEntity.cs +++ b/Engine.Core/Abstract/IEntity.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents a basic entity in the engine. diff --git a/Engine.Core/Abstract/IInitializable.cs b/Engine.Core/Abstract/IInitializable.cs index 54ff8a1..7710354 100644 --- a/Engine.Core/Abstract/IInitializable.cs +++ b/Engine.Core/Abstract/IInitializable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents an entity that can be initialized and finalized. This information is useful for objects we know that are not in use and can be either recycled or dropped for garbage collection. diff --git a/Engine.Core/Abstract/INameable.cs b/Engine.Core/Abstract/INameable.cs index 4a60100..3ac9f0c 100644 --- a/Engine.Core/Abstract/INameable.cs +++ b/Engine.Core/Abstract/INameable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents an entity with a name. diff --git a/Engine.Core/Abstract/IStateEnable.cs b/Engine.Core/Abstract/IStateEnable.cs index 132b9bd..c39e404 100644 --- a/Engine.Core/Abstract/IStateEnable.cs +++ b/Engine.Core/Abstract/IStateEnable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents an entity with an enable state that can be toggled. diff --git a/Engine.Core/Abstract/ITransform2D.cs b/Engine.Core/Abstract/ITransform2D.cs index f085501..45abbd0 100644 --- a/Engine.Core/Abstract/ITransform2D.cs +++ b/Engine.Core/Abstract/ITransform2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents the transformation properties of an object such as position, scale, and rotation in 2D space. diff --git a/Engine.Core/Abstract/IUniverse.cs b/Engine.Core/Abstract/IUniverse.cs index 4667819..d35ffe2 100644 --- a/Engine.Core/Abstract/IUniverse.cs +++ b/Engine.Core/Abstract/IUniverse.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents a universe responsible for managing s. diff --git a/Engine.Core/Abstract/IUniverseObject.cs b/Engine.Core/Abstract/IUniverseObject.cs index 4fa2f28..09010a6 100644 --- a/Engine.Core/Abstract/IUniverseObject.cs +++ b/Engine.Core/Abstract/IUniverseObject.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; /// /// Represents an that can enter and exit a universe within the system. diff --git a/Engine.Core/ActiveBehaviourCollector.cs b/Engine.Core/ActiveBehaviourCollector.cs index b2db768..fc94d9c 100644 --- a/Engine.Core/ActiveBehaviourCollector.cs +++ b/Engine.Core/ActiveBehaviourCollector.cs @@ -2,8 +2,6 @@ using System; using System.Collections; using System.Collections.Generic; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public class ActiveBehaviourCollector : IBehaviourCollector where T : class, IBehaviour diff --git a/Engine.Core/ActiveBehaviourCollectorSorted.cs b/Engine.Core/ActiveBehaviourCollectorSorted.cs index f10fb9d..e1622ff 100644 --- a/Engine.Core/ActiveBehaviourCollectorSorted.cs +++ b/Engine.Core/ActiveBehaviourCollectorSorted.cs @@ -1,7 +1,5 @@ using System; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public class ActiveBehaviourCollectorSorted : ActiveBehaviourCollector where T : class, IBehaviour diff --git a/Engine.Core/BaseEntity.cs b/Engine.Core/BaseEntity.cs index a575bac..863bca0 100644 --- a/Engine.Core/BaseEntity.cs +++ b/Engine.Core/BaseEntity.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Abstract; +namespace Syntriax.Engine.Core; public abstract class BaseEntity : IEntity { diff --git a/Engine.Core/Behaviour.cs b/Engine.Core/Behaviour.cs index fb33586..1d3fb7b 100644 --- a/Engine.Core/Behaviour.cs +++ b/Engine.Core/Behaviour.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public abstract class Behaviour : BehaviourBase diff --git a/Engine.Core/Behaviour2D.cs b/Engine.Core/Behaviour2D.cs index e922fad..e82177c 100644 --- a/Engine.Core/Behaviour2D.cs +++ b/Engine.Core/Behaviour2D.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public abstract class Behaviour2D : Behaviour, IBehaviour2D diff --git a/Engine.Core/BehaviourBase.cs b/Engine.Core/BehaviourBase.cs index 8bb7bd2..b30d51b 100644 --- a/Engine.Core/BehaviourBase.cs +++ b/Engine.Core/BehaviourBase.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; [System.Diagnostics.DebuggerDisplay("{GetType().Name, nq}, Priority: {Priority}, Initialized: {Initialized}")] diff --git a/Engine.Core/BehaviourCollector.cs b/Engine.Core/BehaviourCollector.cs index a6be922..53878b3 100644 --- a/Engine.Core/BehaviourCollector.cs +++ b/Engine.Core/BehaviourCollector.cs @@ -2,8 +2,6 @@ using System; using System.Collections; using System.Collections.Generic; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public class BehaviourCollector : IBehaviourCollector where T : class diff --git a/Engine.Core/BehaviourCollectorSorted.cs b/Engine.Core/BehaviourCollectorSorted.cs index b1211c8..6f93f76 100644 --- a/Engine.Core/BehaviourCollectorSorted.cs +++ b/Engine.Core/BehaviourCollectorSorted.cs @@ -1,7 +1,5 @@ using System; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public class BehaviourCollectorSorted : BehaviourCollector where T : class diff --git a/Engine.Core/BehaviourController.cs b/Engine.Core/BehaviourController.cs index 1f474f5..08328c4 100644 --- a/Engine.Core/BehaviourController.cs +++ b/Engine.Core/BehaviourController.cs @@ -3,8 +3,6 @@ using System.Collections; using System.Collections.Generic; using System.Linq; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; [System.Diagnostics.DebuggerDisplay("Behaviour Count: {behaviours.Count}")] diff --git a/Engine.Core/CoroutineManager.cs b/Engine.Core/CoroutineManager.cs index 8b9e498..950891a 100644 --- a/Engine.Core/CoroutineManager.cs +++ b/Engine.Core/CoroutineManager.cs @@ -1,8 +1,6 @@ using System.Collections; using System.Collections.Generic; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public class CoroutineManager : UniverseObject diff --git a/Engine.Core/CoroutineYield.cs b/Engine.Core/CoroutineYield.cs index 5bbd871..014a1ee 100644 --- a/Engine.Core/CoroutineYield.cs +++ b/Engine.Core/CoroutineYield.cs @@ -1,7 +1,5 @@ using System; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public class CoroutineYield(Func condition) : ICoroutineYield diff --git a/Engine.Core/Extensions/BehaviourControllerExtensions.cs b/Engine.Core/Extensions/BehaviourControllerExtensions.cs index 9449283..3e82630 100644 --- a/Engine.Core/Extensions/BehaviourControllerExtensions.cs +++ b/Engine.Core/Extensions/BehaviourControllerExtensions.cs @@ -1,6 +1,5 @@ using System.Diagnostics.CodeAnalysis; -using Syntriax.Engine.Core.Abstract; using Syntriax.Engine.Core.Exceptions; namespace Syntriax.Engine.Core; diff --git a/Engine.Core/Extensions/BehaviourExtensions.cs b/Engine.Core/Extensions/BehaviourExtensions.cs index 8136c30..1c89699 100644 --- a/Engine.Core/Extensions/BehaviourExtensions.cs +++ b/Engine.Core/Extensions/BehaviourExtensions.cs @@ -1,8 +1,6 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public static class BehaviourExtensions diff --git a/Engine.Core/Extensions/TransformExtensions.cs b/Engine.Core/Extensions/TransformExtensions.cs index 4d35da1..33e349a 100644 --- a/Engine.Core/Extensions/TransformExtensions.cs +++ b/Engine.Core/Extensions/TransformExtensions.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public static class TransformExtensions diff --git a/Engine.Core/Extensions/UniverseExtensions.cs b/Engine.Core/Extensions/UniverseExtensions.cs index 64f6589..4825fd7 100644 --- a/Engine.Core/Extensions/UniverseExtensions.cs +++ b/Engine.Core/Extensions/UniverseExtensions.cs @@ -1,4 +1,3 @@ -using Syntriax.Engine.Core.Abstract; using Syntriax.Engine.Core.Exceptions; namespace Syntriax.Engine.Core; diff --git a/Engine.Core/Extensions/UniverseObjectExtensions.cs b/Engine.Core/Extensions/UniverseObjectExtensions.cs index 52a01a3..bacd7e9 100644 --- a/Engine.Core/Extensions/UniverseObjectExtensions.cs +++ b/Engine.Core/Extensions/UniverseObjectExtensions.cs @@ -1,8 +1,6 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public static class UniverseObjectExtensions diff --git a/Engine.Core/Factory/BehaviourControllerFactory.cs b/Engine.Core/Factory/BehaviourControllerFactory.cs index b01ea74..f3302a6 100644 --- a/Engine.Core/Factory/BehaviourControllerFactory.cs +++ b/Engine.Core/Factory/BehaviourControllerFactory.cs @@ -1,4 +1,3 @@ -using Syntriax.Engine.Core.Abstract; using Syntriax.Engine.Core.Exceptions; namespace Syntriax.Engine.Core.Factory; diff --git a/Engine.Core/Factory/BehaviourFactory.cs b/Engine.Core/Factory/BehaviourFactory.cs index 87251e4..e854b9c 100644 --- a/Engine.Core/Factory/BehaviourFactory.cs +++ b/Engine.Core/Factory/BehaviourFactory.cs @@ -1,4 +1,3 @@ -using Syntriax.Engine.Core.Abstract; using Syntriax.Engine.Core.Exceptions; namespace Syntriax.Engine.Core.Factory; diff --git a/Engine.Core/Factory/StateEnableFactory.cs b/Engine.Core/Factory/StateEnableFactory.cs index 11cd2ff..e7f235a 100644 --- a/Engine.Core/Factory/StateEnableFactory.cs +++ b/Engine.Core/Factory/StateEnableFactory.cs @@ -1,4 +1,3 @@ -using Syntriax.Engine.Core.Abstract; using Syntriax.Engine.Core.Exceptions; namespace Syntriax.Engine.Core.Factory; diff --git a/Engine.Core/Factory/TransformFactory.cs b/Engine.Core/Factory/TransformFactory.cs index e8fcad8..6e22f77 100644 --- a/Engine.Core/Factory/TransformFactory.cs +++ b/Engine.Core/Factory/TransformFactory.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core.Factory; public class TransformFactory diff --git a/Engine.Core/Factory/UniverseObjectFactory.cs b/Engine.Core/Factory/UniverseObjectFactory.cs index 7052574..39c59fc 100644 --- a/Engine.Core/Factory/UniverseObjectFactory.cs +++ b/Engine.Core/Factory/UniverseObjectFactory.cs @@ -1,4 +1,3 @@ -using Syntriax.Engine.Core.Abstract; using Syntriax.Engine.Core.Exceptions; namespace Syntriax.Engine.Core.Factory; diff --git a/Engine.Core/Helpers/AssertHelpers.cs b/Engine.Core/Helpers/AssertHelpers.cs index 12adf03..67e5819 100644 --- a/Engine.Core/Helpers/AssertHelpers.cs +++ b/Engine.Core/Helpers/AssertHelpers.cs @@ -1,7 +1,5 @@ using System.Runtime.CompilerServices; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core.Debug; public class AssertHelpers diff --git a/Engine.Core/Primitives/Circle.cs b/Engine.Core/Primitives/Circle.cs index 7e22d82..1b4dccf 100644 --- a/Engine.Core/Primitives/Circle.cs +++ b/Engine.Core/Primitives/Circle.cs @@ -1,7 +1,5 @@ using System.Diagnostics; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; /// diff --git a/Engine.Core/Primitives/Shape2D.cs b/Engine.Core/Primitives/Shape2D.cs index 9ab193c..afde2d8 100644 --- a/Engine.Core/Primitives/Shape2D.cs +++ b/Engine.Core/Primitives/Shape2D.cs @@ -1,8 +1,6 @@ using System.Collections; using System.Collections.Generic; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; /// diff --git a/Engine.Core/Primitives/Vector2D.cs b/Engine.Core/Primitives/Vector2D.cs index 3f84163..fa910a0 100644 --- a/Engine.Core/Primitives/Vector2D.cs +++ b/Engine.Core/Primitives/Vector2D.cs @@ -1,5 +1,4 @@ using System; -using Syntriax.Engine.Core.Abstract; namespace Syntriax.Engine.Core; diff --git a/Engine.Core/StateEnable.cs b/Engine.Core/StateEnable.cs index cb4d08d..f8deeb7 100644 --- a/Engine.Core/StateEnable.cs +++ b/Engine.Core/StateEnable.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; public class StateEnable : IStateEnable diff --git a/Engine.Core/Transform2D.cs b/Engine.Core/Transform2D.cs index c178dcb..54c381d 100644 --- a/Engine.Core/Transform2D.cs +++ b/Engine.Core/Transform2D.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; [System.Diagnostics.DebuggerDisplay("Name: {UniverseObject.Name, nq} Position: {Position.ToString(), nq}, Scale: {Scale.ToString(), nq}, Rotation: {Rotation}")] diff --git a/Engine.Core/Universe.cs b/Engine.Core/Universe.cs index 449830d..0fa11eb 100644 --- a/Engine.Core/Universe.cs +++ b/Engine.Core/Universe.cs @@ -2,8 +2,6 @@ using System; using System.Collections; using System.Collections.Generic; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; [System.Diagnostics.DebuggerDisplay("UniverseObject Count: {_universeObjects.Count}")] diff --git a/Engine.Core/UniverseObject.cs b/Engine.Core/UniverseObject.cs index a84e03a..daaf156 100644 --- a/Engine.Core/UniverseObject.cs +++ b/Engine.Core/UniverseObject.cs @@ -1,8 +1,6 @@ using System.Collections; using System.Collections.Generic; -using Syntriax.Engine.Core.Abstract; - namespace Syntriax.Engine.Core; [System.Diagnostics.DebuggerDisplay("Name: {Name}, Initialized: {Initialized}")] diff --git a/Engine.Physics2D/Abstract/ICircleCollider2D.cs b/Engine.Physics2D/Abstract/ICircleCollider2D.cs index 2dc2efc..fff33bd 100644 --- a/Engine.Physics2D/Abstract/ICircleCollider2D.cs +++ b/Engine.Physics2D/Abstract/ICircleCollider2D.cs @@ -1,6 +1,6 @@ using Syntriax.Engine.Core; -namespace Syntriax.Engine.Physics2D.Abstract; +namespace Syntriax.Engine.Physics2D; /// /// Represents a with the shape of a . diff --git a/Engine.Physics2D/Abstract/ICollider2D.cs b/Engine.Physics2D/Abstract/ICollider2D.cs index 379c083..ee9c38a 100644 --- a/Engine.Physics2D/Abstract/ICollider2D.cs +++ b/Engine.Physics2D/Abstract/ICollider2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core.Abstract; +using Syntriax.Engine.Core; -namespace Syntriax.Engine.Physics2D.Abstract; +namespace Syntriax.Engine.Physics2D; /// /// Represents a 2D collider. diff --git a/Engine.Physics2D/Abstract/ICollisionDetector2D.cs b/Engine.Physics2D/Abstract/ICollisionDetector2D.cs index 63e89e4..ed6e307 100644 --- a/Engine.Physics2D/Abstract/ICollisionDetector2D.cs +++ b/Engine.Physics2D/Abstract/ICollisionDetector2D.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Physics2D.Abstract; - namespace Syntriax.Engine.Physics2D; /// diff --git a/Engine.Physics2D/Abstract/ICollisionResolver2D.cs b/Engine.Physics2D/Abstract/ICollisionResolver2D.cs index 17fd4fd..e5b10ff 100644 --- a/Engine.Physics2D/Abstract/ICollisionResolver2D.cs +++ b/Engine.Physics2D/Abstract/ICollisionResolver2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Physics2D.Abstract; +namespace Syntriax.Engine.Physics2D; /// /// Represents a 2D collision resolver. diff --git a/Engine.Physics2D/Abstract/IPhysicsEngine2D.cs b/Engine.Physics2D/Abstract/IPhysicsEngine2D.cs index e9947a8..903bb9e 100644 --- a/Engine.Physics2D/Abstract/IPhysicsEngine2D.cs +++ b/Engine.Physics2D/Abstract/IPhysicsEngine2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Physics2D.Abstract; +namespace Syntriax.Engine.Physics2D; /// /// Represents a 2D physics engine. diff --git a/Engine.Physics2D/Abstract/IPhysicsMaterial2D.cs b/Engine.Physics2D/Abstract/IPhysicsMaterial2D.cs index 6019a91..4bfc716 100644 --- a/Engine.Physics2D/Abstract/IPhysicsMaterial2D.cs +++ b/Engine.Physics2D/Abstract/IPhysicsMaterial2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Physics2D.Abstract; +namespace Syntriax.Engine.Physics2D; /// /// Represents a 2D physics object's responsive attributes. diff --git a/Engine.Physics2D/Abstract/IPhysicsUpdate.cs b/Engine.Physics2D/Abstract/IPhysicsUpdate.cs index c5ac3cf..d648057 100644 --- a/Engine.Physics2D/Abstract/IPhysicsUpdate.cs +++ b/Engine.Physics2D/Abstract/IPhysicsUpdate.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core.Abstract; +using Syntriax.Engine.Core; -namespace Syntriax.Engine.Physics2D.Abstract; +namespace Syntriax.Engine.Physics2D; /// /// Represents a that listens to physics simulation update phase. diff --git a/Engine.Physics2D/Abstract/IRigidBody2D.cs b/Engine.Physics2D/Abstract/IRigidBody2D.cs index 89b1685..b7292cd 100644 --- a/Engine.Physics2D/Abstract/IRigidBody2D.cs +++ b/Engine.Physics2D/Abstract/IRigidBody2D.cs @@ -1,7 +1,6 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Abstract; -namespace Syntriax.Engine.Physics2D.Abstract; +namespace Syntriax.Engine.Physics2D; /// /// Represents a 2D rigid body in the engine. diff --git a/Engine.Physics2D/Abstract/IShapeCollider2D.cs b/Engine.Physics2D/Abstract/IShapeCollider2D.cs index e9d0ba4..925751a 100644 --- a/Engine.Physics2D/Abstract/IShapeCollider2D.cs +++ b/Engine.Physics2D/Abstract/IShapeCollider2D.cs @@ -1,6 +1,6 @@ using Syntriax.Engine.Core; -namespace Syntriax.Engine.Physics2D.Abstract; +namespace Syntriax.Engine.Physics2D; /// /// Represents a with a custom . diff --git a/Engine.Physics2D/Collider2DBehaviourBase.cs b/Engine.Physics2D/Collider2DBehaviourBase.cs index 9dae58c..9b86684 100644 --- a/Engine.Physics2D/Collider2DBehaviourBase.cs +++ b/Engine.Physics2D/Collider2DBehaviourBase.cs @@ -1,6 +1,4 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Abstract; -using Syntriax.Engine.Physics2D.Abstract; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Physics2D/Collider2DCircleBehaviour.cs b/Engine.Physics2D/Collider2DCircleBehaviour.cs index 7a2e769..7fb9fb0 100644 --- a/Engine.Physics2D/Collider2DCircleBehaviour.cs +++ b/Engine.Physics2D/Collider2DCircleBehaviour.cs @@ -1,5 +1,4 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Physics2D.Abstract; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Physics2D/Collider2DShapeBehaviour.cs b/Engine.Physics2D/Collider2DShapeBehaviour.cs index b005e80..1d85056 100644 --- a/Engine.Physics2D/Collider2DShapeBehaviour.cs +++ b/Engine.Physics2D/Collider2DShapeBehaviour.cs @@ -1,5 +1,4 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Physics2D.Abstract; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Physics2D/CollisionDetectionInformation.cs b/Engine.Physics2D/CollisionDetectionInformation.cs index 3a330dd..6476df0 100644 --- a/Engine.Physics2D/CollisionDetectionInformation.cs +++ b/Engine.Physics2D/CollisionDetectionInformation.cs @@ -1,5 +1,4 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Physics2D.Abstract; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Physics2D/CollisionDetector2D.cs b/Engine.Physics2D/CollisionDetector2D.cs index 69bb501..8b1508b 100644 --- a/Engine.Physics2D/CollisionDetector2D.cs +++ b/Engine.Physics2D/CollisionDetector2D.cs @@ -1,5 +1,5 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Physics2D.Abstract; +using Syntriax.Engine.Physics2D; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Physics2D/CollisionResolver2D.cs b/Engine.Physics2D/CollisionResolver2D.cs index 29e031b..4918a59 100644 --- a/Engine.Physics2D/CollisionResolver2D.cs +++ b/Engine.Physics2D/CollisionResolver2D.cs @@ -1,5 +1,4 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Physics2D.Abstract; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Physics2D/PhysicsCoroutineManager.cs b/Engine.Physics2D/PhysicsCoroutineManager.cs index b480e31..9583933 100644 --- a/Engine.Physics2D/PhysicsCoroutineManager.cs +++ b/Engine.Physics2D/PhysicsCoroutineManager.cs @@ -2,8 +2,6 @@ using System.Collections; using System.Collections.Generic; using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Abstract; -using Syntriax.Engine.Physics2D.Abstract; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Physics2D/PhysicsEngine2D.cs b/Engine.Physics2D/PhysicsEngine2D.cs index 6b50627..6ad2d6d 100644 --- a/Engine.Physics2D/PhysicsEngine2D.cs +++ b/Engine.Physics2D/PhysicsEngine2D.cs @@ -1,6 +1,4 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Abstract; -using Syntriax.Engine.Physics2D.Abstract; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Physics2D/PhysicsEngine2DStandalone.cs b/Engine.Physics2D/PhysicsEngine2DStandalone.cs index 129ce14..f67b070 100644 --- a/Engine.Physics2D/PhysicsEngine2DStandalone.cs +++ b/Engine.Physics2D/PhysicsEngine2DStandalone.cs @@ -1,8 +1,6 @@ using System.Collections.Generic; using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Abstract; -using Syntriax.Engine.Physics2D.Abstract; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Physics2D/PhysicsMaterial2D.cs b/Engine.Physics2D/PhysicsMaterial2D.cs index 23e462e..616c26f 100644 --- a/Engine.Physics2D/PhysicsMaterial2D.cs +++ b/Engine.Physics2D/PhysicsMaterial2D.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Physics2D.Abstract; - namespace Syntriax.Engine.Physics2D; public readonly struct PhysicsMaterial2D(float Friction, float Restitution) : IPhysicsMaterial2D diff --git a/Engine.Physics2D/PhysicsMaterial2DDefault.cs b/Engine.Physics2D/PhysicsMaterial2DDefault.cs index 41d1709..faf0e31 100644 --- a/Engine.Physics2D/PhysicsMaterial2DDefault.cs +++ b/Engine.Physics2D/PhysicsMaterial2DDefault.cs @@ -1,5 +1,3 @@ -using Syntriax.Engine.Physics2D.Abstract; - namespace Syntriax.Engine.Physics2D; public readonly struct PhysicsMaterial2DDefault : IPhysicsMaterial2D diff --git a/Engine.Physics2D/RigidBody2D.cs b/Engine.Physics2D/RigidBody2D.cs index 9e5aa04..c5584eb 100644 --- a/Engine.Physics2D/RigidBody2D.cs +++ b/Engine.Physics2D/RigidBody2D.cs @@ -1,5 +1,4 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Physics2D.Abstract; namespace Syntriax.Engine.Physics2D; diff --git a/Engine.Systems/Input/IButtonInputs.cs b/Engine.Systems/Input/IButtonInputs.cs index 597ebed..6361772 100644 --- a/Engine.Systems/Input/IButtonInputs.cs +++ b/Engine.Systems/Input/IButtonInputs.cs @@ -1,4 +1,4 @@ -using Syntriax.Engine.Core.Abstract; +using Syntriax.Engine.Core; namespace Syntriax.Engine.Systems.Input; diff --git a/Engine.Systems/StateMachine/IState.cs b/Engine.Systems/StateMachine/IState.cs index ff20be4..b3bf3bf 100644 --- a/Engine.Systems/StateMachine/IState.cs +++ b/Engine.Systems/StateMachine/IState.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.StateMachine; +namespace Syntriax.Engine.Systems.StateMachine; public interface IState { diff --git a/Engine.Systems/StateMachine/State.cs b/Engine.Systems/StateMachine/State.cs index d72e76c..6f0583a 100644 --- a/Engine.Systems/StateMachine/State.cs +++ b/Engine.Systems/StateMachine/State.cs @@ -1,6 +1,6 @@ using Syntriax.Engine.Core; -namespace Syntriax.Engine.StateMachine; +namespace Syntriax.Engine.Systems.StateMachine; public class State : IState { diff --git a/Engine.Systems/StateMachine/StateBehaviourBase.cs b/Engine.Systems/StateMachine/StateBehaviourBase.cs index 9a1b49b..a33ebbe 100644 --- a/Engine.Systems/StateMachine/StateBehaviourBase.cs +++ b/Engine.Systems/StateMachine/StateBehaviourBase.cs @@ -1,6 +1,6 @@ using Syntriax.Engine.Core; -namespace Syntriax.Engine.StateMachine; +namespace Syntriax.Engine.Systems.StateMachine; public abstract class StateBehaviourBase : Behaviour, IState { diff --git a/Engine.Systems/StateMachine/StateMachine.cs b/Engine.Systems/StateMachine/StateMachine.cs index 06930b8..02fb3a7 100644 --- a/Engine.Systems/StateMachine/StateMachine.cs +++ b/Engine.Systems/StateMachine/StateMachine.cs @@ -1,6 +1,6 @@ using Syntriax.Engine.Core; -namespace Syntriax.Engine.StateMachine; +namespace Syntriax.Engine.Systems.StateMachine; public class StateMachine : Behaviour { diff --git a/Engine.Systems/StateMachine/StateTransition.cs b/Engine.Systems/StateMachine/StateTransition.cs index d0cff8e..992d556 100644 --- a/Engine.Systems/StateMachine/StateTransition.cs +++ b/Engine.Systems/StateMachine/StateTransition.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.StateMachine; +namespace Syntriax.Engine.Systems.StateMachine; public readonly record struct StateTransition(IState State, IReadOnlyList> Conditions) { diff --git a/Engine.Systems/Time/StopwatchBehaviour.cs b/Engine.Systems/Time/StopwatchBehaviour.cs index 98a5a8d..887e020 100644 --- a/Engine.Systems/Time/StopwatchBehaviour.cs +++ b/Engine.Systems/Time/StopwatchBehaviour.cs @@ -1,5 +1,4 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Abstract; namespace Syntriax.Engine.Systems.Time; diff --git a/Engine.Systems/Time/TimerBehaviour.cs b/Engine.Systems/Time/TimerBehaviour.cs index 6c7cbd2..fa1417d 100644 --- a/Engine.Systems/Time/TimerBehaviour.cs +++ b/Engine.Systems/Time/TimerBehaviour.cs @@ -1,5 +1,4 @@ using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Abstract; namespace Syntriax.Engine.Systems.Time; diff --git a/Engine.Systems/Tween/TweenManager.cs b/Engine.Systems/Tween/TweenManager.cs index f7758c4..2da180f 100644 --- a/Engine.Systems/Tween/TweenManager.cs +++ b/Engine.Systems/Tween/TweenManager.cs @@ -1,7 +1,6 @@ using System.Collections; using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Abstract; namespace Syntriax.Engine.Systems.Tween;