diff --git a/Engine.Core/Abstract/Assignable/IAssignable.cs b/Engine.Core/Abstract/Assignable/IAssignable.cs index b4cac2a..f5c1177 100644 --- a/Engine.Core/Abstract/Assignable/IAssignable.cs +++ b/Engine.Core/Abstract/Assignable/IAssignable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 6feff7e..387c015 100644 --- a/Engine.Core/Abstract/Assignable/IHasBehaviourController.cs +++ b/Engine.Core/Abstract/Assignable/IHasBehaviourController.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 205ffe5..b972510 100644 --- a/Engine.Core/Abstract/Assignable/IHasEntity.cs +++ b/Engine.Core/Abstract/Assignable/IHasEntity.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 0a5c766..2f010bb 100644 --- a/Engine.Core/Abstract/Assignable/IHasStateEnable.cs +++ b/Engine.Core/Abstract/Assignable/IHasStateEnable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 bcf13f2..587a77f 100644 --- a/Engine.Core/Abstract/Assignable/IHasUniverse.cs +++ b/Engine.Core/Abstract/Assignable/IHasUniverse.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 ad1081a..dd21850 100644 --- a/Engine.Core/Abstract/Assignable/IHasUniverseObject.cs +++ b/Engine.Core/Abstract/Assignable/IHasUniverseObject.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 7fbfd6c..9bfa751 100644 --- a/Engine.Core/Abstract/IActive.cs +++ b/Engine.Core/Abstract/IActive.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 25ec8cd..48ca81d 100644 --- a/Engine.Core/Abstract/IBehaviour.cs +++ b/Engine.Core/Abstract/IBehaviour.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 b0918d4..3249ef9 100644 --- a/Engine.Core/Abstract/IBehaviour2D.cs +++ b/Engine.Core/Abstract/IBehaviour2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public interface IBehaviour2D : IBehaviour { diff --git a/Engine.Core/Abstract/IBehaviourCollector.cs b/Engine.Core/Abstract/IBehaviourCollector.cs index ad9ed56..674236d 100644 --- a/Engine.Core/Abstract/IBehaviourCollector.cs +++ b/Engine.Core/Abstract/IBehaviourCollector.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 590e2e8..87af209 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; +namespace Engine.Core; /// /// Represents a controller for managing s. Connected to an . diff --git a/Engine.Core/Abstract/ICamera2D.cs b/Engine.Core/Abstract/ICamera2D.cs index 30bc362..4c12105 100644 --- a/Engine.Core/Abstract/ICamera2D.cs +++ b/Engine.Core/Abstract/ICamera2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a 2D camera in the engine. diff --git a/Engine.Core/Abstract/ICoroutineYield.cs b/Engine.Core/Abstract/ICoroutineYield.cs index 230ca21..c3e04a8 100644 --- a/Engine.Core/Abstract/ICoroutineYield.cs +++ b/Engine.Core/Abstract/ICoroutineYield.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public interface ICoroutineYield { diff --git a/Engine.Core/Abstract/IEntity.cs b/Engine.Core/Abstract/IEntity.cs index 3eeefdd..53a719a 100644 --- a/Engine.Core/Abstract/IEntity.cs +++ b/Engine.Core/Abstract/IEntity.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a basic entity in the engine. diff --git a/Engine.Core/Abstract/IInitializable.cs b/Engine.Core/Abstract/IInitializable.cs index 64230d3..a7f846d 100644 --- a/Engine.Core/Abstract/IInitializable.cs +++ b/Engine.Core/Abstract/IInitializable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 93442be..08b287b 100644 --- a/Engine.Core/Abstract/INameable.cs +++ b/Engine.Core/Abstract/INameable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents an entity with a name. diff --git a/Engine.Core/Abstract/IStateEnable.cs b/Engine.Core/Abstract/IStateEnable.cs index 4c61668..96925f5 100644 --- a/Engine.Core/Abstract/IStateEnable.cs +++ b/Engine.Core/Abstract/IStateEnable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 495ef9e..d899386 100644 --- a/Engine.Core/Abstract/ITransform2D.cs +++ b/Engine.Core/Abstract/ITransform2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace 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 5f99c8c..e0896a1 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; +namespace Engine.Core; /// /// Represents a universe responsible for managing s. diff --git a/Engine.Core/Abstract/IUniverseObject.cs b/Engine.Core/Abstract/IUniverseObject.cs index b2b1afd..64515c9 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; +namespace 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 f138a59..f5fbd06 100644 --- a/Engine.Core/ActiveBehaviourCollector.cs +++ b/Engine.Core/ActiveBehaviourCollector.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class ActiveBehaviourCollector : IBehaviourCollector where T : class, IBehaviour { diff --git a/Engine.Core/ActiveBehaviourCollectorSorted.cs b/Engine.Core/ActiveBehaviourCollectorSorted.cs index 292f6b5..7db7945 100644 --- a/Engine.Core/ActiveBehaviourCollectorSorted.cs +++ b/Engine.Core/ActiveBehaviourCollectorSorted.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class ActiveBehaviourCollectorSorted : ActiveBehaviourCollector where T : class, IBehaviour { diff --git a/Engine.Core/BaseEntity.cs b/Engine.Core/BaseEntity.cs index e98e387..a16b072 100644 --- a/Engine.Core/BaseEntity.cs +++ b/Engine.Core/BaseEntity.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public abstract class BaseEntity : IEntity { diff --git a/Engine.Core/Behaviour.cs b/Engine.Core/Behaviour.cs index 729c14e..06b628f 100644 --- a/Engine.Core/Behaviour.cs +++ b/Engine.Core/Behaviour.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public abstract class Behaviour : BehaviourBase { diff --git a/Engine.Core/Behaviour2D.cs b/Engine.Core/Behaviour2D.cs index a6d22c2..6622cc1 100644 --- a/Engine.Core/Behaviour2D.cs +++ b/Engine.Core/Behaviour2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public abstract class Behaviour2D : Behaviour, IBehaviour2D { diff --git a/Engine.Core/BehaviourBase.cs b/Engine.Core/BehaviourBase.cs index 37b521a..27012c0 100644 --- a/Engine.Core/BehaviourBase.cs +++ b/Engine.Core/BehaviourBase.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; [System.Diagnostics.DebuggerDisplay("{GetType().Name, nq}, Priority: {Priority}, Initialized: {Initialized}")] public abstract class BehaviourBase : BaseEntity, IBehaviour diff --git a/Engine.Core/BehaviourCollector.cs b/Engine.Core/BehaviourCollector.cs index 4eedb67..56617c2 100644 --- a/Engine.Core/BehaviourCollector.cs +++ b/Engine.Core/BehaviourCollector.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class BehaviourCollector : IBehaviourCollector where T : class { diff --git a/Engine.Core/BehaviourCollectorSorted.cs b/Engine.Core/BehaviourCollectorSorted.cs index 35effbc..811bb63 100644 --- a/Engine.Core/BehaviourCollectorSorted.cs +++ b/Engine.Core/BehaviourCollectorSorted.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class BehaviourCollectorSorted : BehaviourCollector where T : class { diff --git a/Engine.Core/BehaviourController.cs b/Engine.Core/BehaviourController.cs index 7da0e27..45497aa 100644 --- a/Engine.Core/BehaviourController.cs +++ b/Engine.Core/BehaviourController.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; [System.Diagnostics.DebuggerDisplay("Behaviour Count: {behaviours.Count}")] public class BehaviourController : BaseEntity, IBehaviourController diff --git a/Engine.Core/CoroutineManager.cs b/Engine.Core/CoroutineManager.cs index 3b60152..16f9390 100644 --- a/Engine.Core/CoroutineManager.cs +++ b/Engine.Core/CoroutineManager.cs @@ -1,7 +1,7 @@ using System.Collections; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class CoroutineManager : Behaviour, IUpdate { diff --git a/Engine.Core/CoroutineYield.cs b/Engine.Core/CoroutineYield.cs index 014a1ee..44e3f5b 100644 --- a/Engine.Core/CoroutineYield.cs +++ b/Engine.Core/CoroutineYield.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class CoroutineYield(Func condition) : ICoroutineYield { diff --git a/Engine.Core/Debug/AssertHelpers.cs b/Engine.Core/Debug/AssertHelpers.cs index 426ca43..6a2f9e5 100644 --- a/Engine.Core/Debug/AssertHelpers.cs +++ b/Engine.Core/Debug/AssertHelpers.cs @@ -1,6 +1,6 @@ using System.Runtime.CompilerServices; -namespace Syntriax.Engine.Core.Debug; +namespace Engine.Core.Debug; public static class Assert { diff --git a/Engine.Core/Debug/ConsoleLogger.cs b/Engine.Core/Debug/ConsoleLogger.cs index 242b818..a76b699 100644 --- a/Engine.Core/Debug/ConsoleLogger.cs +++ b/Engine.Core/Debug/ConsoleLogger.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Debug; +namespace Engine.Core.Debug; public class ConsoleLogger : LoggerBase { diff --git a/Engine.Core/Debug/FileLogger.cs b/Engine.Core/Debug/FileLogger.cs index 98b4032..ff305e2 100644 --- a/Engine.Core/Debug/FileLogger.cs +++ b/Engine.Core/Debug/FileLogger.cs @@ -1,7 +1,7 @@ using System; using System.IO; -namespace Syntriax.Engine.Core.Debug; +namespace Engine.Core.Debug; public class FileLogger : LoggerBase { diff --git a/Engine.Core/Debug/ILogger.cs b/Engine.Core/Debug/ILogger.cs index babe6b6..664ec45 100644 --- a/Engine.Core/Debug/ILogger.cs +++ b/Engine.Core/Debug/ILogger.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Debug; +namespace Engine.Core.Debug; public interface ILogger { diff --git a/Engine.Core/Debug/LoggerBase.cs b/Engine.Core/Debug/LoggerBase.cs index 9bbcf10..2626b69 100644 --- a/Engine.Core/Debug/LoggerBase.cs +++ b/Engine.Core/Debug/LoggerBase.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Debug; +namespace Engine.Core.Debug; public abstract class LoggerBase : ILogger { diff --git a/Engine.Core/Debug/LoggerContainer.cs b/Engine.Core/Debug/LoggerContainer.cs index 22f3490..5cbc259 100644 --- a/Engine.Core/Debug/LoggerContainer.cs +++ b/Engine.Core/Debug/LoggerContainer.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Debug; +namespace Engine.Core.Debug; public class LoggerContainer : Behaviour, ILogger { diff --git a/Engine.Core/Debug/LoggerExtensions.cs b/Engine.Core/Debug/LoggerExtensions.cs index bc58c3d..d63421a 100644 --- a/Engine.Core/Debug/LoggerExtensions.cs +++ b/Engine.Core/Debug/LoggerExtensions.cs @@ -1,7 +1,7 @@ using System; using System.Diagnostics; -namespace Syntriax.Engine.Core.Debug; +namespace Engine.Core.Debug; public static class LoggerExtensions { diff --git a/Engine.Core/Debug/LoggerWrapper.cs b/Engine.Core/Debug/LoggerWrapper.cs index 15e69fb..7ac1335 100644 --- a/Engine.Core/Debug/LoggerWrapper.cs +++ b/Engine.Core/Debug/LoggerWrapper.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Debug; +namespace Engine.Core.Debug; public class LoggerWrapper(ILogger firstLogger, ILogger secondLogger) : ILogger { diff --git a/Engine.Core/Debug/LoggerWrapperExtensions.cs b/Engine.Core/Debug/LoggerWrapperExtensions.cs index c98bece..ce5bfc6 100644 --- a/Engine.Core/Debug/LoggerWrapperExtensions.cs +++ b/Engine.Core/Debug/LoggerWrapperExtensions.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Debug; +namespace Engine.Core.Debug; public static class LoggerWrapperExtensions { diff --git a/Engine.Core/Engine.Core.csproj b/Engine.Core/Engine.Core.csproj index b71dec1..f777948 100644 --- a/Engine.Core/Engine.Core.csproj +++ b/Engine.Core/Engine.Core.csproj @@ -4,7 +4,8 @@ net9.0 false enable - Syntriax.Engine.Core + Engine.Core + Engine.Core diff --git a/Engine.Core/Exceptions/AssignFailedException.cs b/Engine.Core/Exceptions/AssignFailedException.cs index 2cc474c..8294f17 100644 --- a/Engine.Core/Exceptions/AssignFailedException.cs +++ b/Engine.Core/Exceptions/AssignFailedException.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Exceptions; +namespace Engine.Core.Exceptions; public class AssignFailedException(string? message) : Exception(message) { diff --git a/Engine.Core/Exceptions/BehaviourNotFoundException.cs b/Engine.Core/Exceptions/BehaviourNotFoundException.cs index 36ca458..c340f33 100644 --- a/Engine.Core/Exceptions/BehaviourNotFoundException.cs +++ b/Engine.Core/Exceptions/BehaviourNotFoundException.cs @@ -1,3 +1,3 @@ -namespace Syntriax.Engine.Core.Exceptions; +namespace Engine.Core.Exceptions; public class BehaviourNotFoundException(string? message) : NotFoundException(message); diff --git a/Engine.Core/Exceptions/NotAssignedException.cs b/Engine.Core/Exceptions/NotAssignedException.cs index bd1923a..9bdd476 100644 --- a/Engine.Core/Exceptions/NotAssignedException.cs +++ b/Engine.Core/Exceptions/NotAssignedException.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Exceptions; +namespace Engine.Core.Exceptions; public class NotAssignedException(string? message) : Exception(message) { diff --git a/Engine.Core/Exceptions/NotFoundException.cs b/Engine.Core/Exceptions/NotFoundException.cs index b6b0d69..77a9656 100644 --- a/Engine.Core/Exceptions/NotFoundException.cs +++ b/Engine.Core/Exceptions/NotFoundException.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Exceptions; +namespace Engine.Core.Exceptions; public class NotFoundException(string? message) : Exception(message) { diff --git a/Engine.Core/Exceptions/UniverseObjectNotFoundException.cs b/Engine.Core/Exceptions/UniverseObjectNotFoundException.cs index 9b68b4d..67f909e 100644 --- a/Engine.Core/Exceptions/UniverseObjectNotFoundException.cs +++ b/Engine.Core/Exceptions/UniverseObjectNotFoundException.cs @@ -1,3 +1,3 @@ -namespace Syntriax.Engine.Core.Exceptions; +namespace Engine.Core.Exceptions; public class UniverseObjectNotFoundException(string? message) : NotFoundException(message); diff --git a/Engine.Core/Extensions/BehaviourControllerExtensions.cs b/Engine.Core/Extensions/BehaviourControllerExtensions.cs index 9dbfa46..bcf0773 100644 --- a/Engine.Core/Extensions/BehaviourControllerExtensions.cs +++ b/Engine.Core/Extensions/BehaviourControllerExtensions.cs @@ -1,9 +1,9 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; -using Syntriax.Engine.Core.Exceptions; +using Engine.Core.Exceptions; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public static class BehaviourControllerExtensions { diff --git a/Engine.Core/Extensions/EnumExtensions.cs b/Engine.Core/Extensions/EnumExtensions.cs index 1f7e8b1..06e4a01 100644 --- a/Engine.Core/Extensions/EnumExtensions.cs +++ b/Engine.Core/Extensions/EnumExtensions.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public static class EnumExtensions { diff --git a/Engine.Core/Extensions/FloatExtensions.cs b/Engine.Core/Extensions/FloatExtensions.cs index 019bc39..fd5b828 100644 --- a/Engine.Core/Extensions/FloatExtensions.cs +++ b/Engine.Core/Extensions/FloatExtensions.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public static class FloatExtensions { diff --git a/Engine.Core/Extensions/TransformExtensions.cs b/Engine.Core/Extensions/TransformExtensions.cs index 33e349a..8300449 100644 --- a/Engine.Core/Extensions/TransformExtensions.cs +++ b/Engine.Core/Extensions/TransformExtensions.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public static class TransformExtensions { diff --git a/Engine.Core/Extensions/UniverseExtensions.cs b/Engine.Core/Extensions/UniverseExtensions.cs index 2624712..e7379b0 100644 --- a/Engine.Core/Extensions/UniverseExtensions.cs +++ b/Engine.Core/Extensions/UniverseExtensions.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core.Exceptions; +using Engine.Core.Exceptions; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public static class UniverseExtensions { diff --git a/Engine.Core/Extensions/UniverseObjectExtensions.cs b/Engine.Core/Extensions/UniverseObjectExtensions.cs index 96d5ec3..2f843cb 100644 --- a/Engine.Core/Extensions/UniverseObjectExtensions.cs +++ b/Engine.Core/Extensions/UniverseObjectExtensions.cs @@ -1,9 +1,9 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; -using Syntriax.Engine.Core.Exceptions; +using Engine.Core.Exceptions; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public static class UniverseObjectExtensions { diff --git a/Engine.Core/Factory/Abstract/IFactory.cs b/Engine.Core/Factory/Abstract/IFactory.cs index 2d61656..659f073 100644 --- a/Engine.Core/Factory/Abstract/IFactory.cs +++ b/Engine.Core/Factory/Abstract/IFactory.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Factory.Abstract; +namespace Engine.Core.Factory.Abstract; public interface IFactory where TInterface : class { diff --git a/Engine.Core/Factory/BehaviourControllerFactory.cs b/Engine.Core/Factory/BehaviourControllerFactory.cs index 13f8c46..fb0e6bf 100644 --- a/Engine.Core/Factory/BehaviourControllerFactory.cs +++ b/Engine.Core/Factory/BehaviourControllerFactory.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core.Exceptions; +using Engine.Core.Exceptions; -namespace Syntriax.Engine.Core.Factory; +namespace Engine.Core.Factory; public class BehaviourControllerFactory { diff --git a/Engine.Core/Factory/BehaviourFactory.cs b/Engine.Core/Factory/BehaviourFactory.cs index 0502465..4c6bff8 100644 --- a/Engine.Core/Factory/BehaviourFactory.cs +++ b/Engine.Core/Factory/BehaviourFactory.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core.Exceptions; +using Engine.Core.Exceptions; -namespace Syntriax.Engine.Core.Factory; +namespace Engine.Core.Factory; public class BehaviourFactory { diff --git a/Engine.Core/Factory/FactoryBase.cs b/Engine.Core/Factory/FactoryBase.cs index 97f8067..3e90cd8 100644 --- a/Engine.Core/Factory/FactoryBase.cs +++ b/Engine.Core/Factory/FactoryBase.cs @@ -1,7 +1,7 @@ using System; -using Syntriax.Engine.Core.Factory.Abstract; +using Engine.Core.Factory.Abstract; -namespace Syntriax.Engine.Core.Factory; +namespace Engine.Core.Factory; public abstract class FactoryBase : IFactory where TInterface : class diff --git a/Engine.Core/Factory/StateEnableFactory.cs b/Engine.Core/Factory/StateEnableFactory.cs index e7f235a..7bc950f 100644 --- a/Engine.Core/Factory/StateEnableFactory.cs +++ b/Engine.Core/Factory/StateEnableFactory.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core.Exceptions; +using Engine.Core.Exceptions; -namespace Syntriax.Engine.Core.Factory; +namespace Engine.Core.Factory; public class StateEnableFactory { diff --git a/Engine.Core/Factory/TransformFactory.cs b/Engine.Core/Factory/TransformFactory.cs index 6e22f77..182e080 100644 --- a/Engine.Core/Factory/TransformFactory.cs +++ b/Engine.Core/Factory/TransformFactory.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core.Factory; +namespace Engine.Core.Factory; public class TransformFactory { diff --git a/Engine.Core/Factory/TypeFactory.cs b/Engine.Core/Factory/TypeFactory.cs index aa770e1..5f92c68 100644 --- a/Engine.Core/Factory/TypeFactory.cs +++ b/Engine.Core/Factory/TypeFactory.cs @@ -3,7 +3,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; -namespace Syntriax.Engine.Core.Factory; +namespace Engine.Core.Factory; public static class TypeFactory { diff --git a/Engine.Core/Factory/UniverseObjectFactory.cs b/Engine.Core/Factory/UniverseObjectFactory.cs index 917ee18..0d7b21f 100644 --- a/Engine.Core/Factory/UniverseObjectFactory.cs +++ b/Engine.Core/Factory/UniverseObjectFactory.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core.Exceptions; +using Engine.Core.Exceptions; -namespace Syntriax.Engine.Core.Factory; +namespace Engine.Core.Factory; public class UniverseObjectFactory { diff --git a/Engine.Core/Helpers/Event.cs b/Engine.Core/Helpers/Event.cs index c216515..13d112c 100644 --- a/Engine.Core/Helpers/Event.cs +++ b/Engine.Core/Helpers/Event.cs @@ -1,9 +1,9 @@ using System; using System.Collections.Generic; -using Syntriax.Engine.Core.Debug; +using Engine.Core.Debug; -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a simple event with no parameters. diff --git a/Engine.Core/Helpers/IPool.cs b/Engine.Core/Helpers/IPool.cs index e151ff6..09849e9 100644 --- a/Engine.Core/Helpers/IPool.cs +++ b/Engine.Core/Helpers/IPool.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public interface IPool { diff --git a/Engine.Core/Helpers/ListPool.cs b/Engine.Core/Helpers/ListPool.cs index 2377e79..149e015 100644 --- a/Engine.Core/Helpers/ListPool.cs +++ b/Engine.Core/Helpers/ListPool.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class ListPool : IPool> { diff --git a/Engine.Core/Helpers/Pool.cs b/Engine.Core/Helpers/Pool.cs index 1b42c77..980823f 100644 --- a/Engine.Core/Helpers/Pool.cs +++ b/Engine.Core/Helpers/Pool.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class Pool : IPool { diff --git a/Engine.Core/Helpers/Progression/IProgressionTracker.cs b/Engine.Core/Helpers/Progression/IProgressionTracker.cs index 7edd8a6..89f5653 100644 --- a/Engine.Core/Helpers/Progression/IProgressionTracker.cs +++ b/Engine.Core/Helpers/Progression/IProgressionTracker.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public interface IProgressionTracker : IReadOnlyProgressionTracker { diff --git a/Engine.Core/Helpers/Progression/IReadOnlyProgressionTracker.cs b/Engine.Core/Helpers/Progression/IReadOnlyProgressionTracker.cs index a92034d..e65f859 100644 --- a/Engine.Core/Helpers/Progression/IReadOnlyProgressionTracker.cs +++ b/Engine.Core/Helpers/Progression/IReadOnlyProgressionTracker.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public interface IReadOnlyProgressionTracker { diff --git a/Engine.Core/Helpers/Progression/ProgressionTracker.cs b/Engine.Core/Helpers/Progression/ProgressionTracker.cs index 93cf936..75fec53 100644 --- a/Engine.Core/Helpers/Progression/ProgressionTracker.cs +++ b/Engine.Core/Helpers/Progression/ProgressionTracker.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class ProgressionTracker : IProgressionTracker { diff --git a/Engine.Core/Helpers/Progression/ProgressiveTask.cs b/Engine.Core/Helpers/Progression/ProgressiveTask.cs index 701027c..05ae750 100644 --- a/Engine.Core/Helpers/Progression/ProgressiveTask.cs +++ b/Engine.Core/Helpers/Progression/ProgressiveTask.cs @@ -1,6 +1,6 @@ using System.Threading.Tasks; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public record struct ProgressiveTask(IReadOnlyProgressionTracker ProgressionTracker, Task Task) { diff --git a/Engine.Core/Math.cs b/Engine.Core/Math.cs index 456dec5..a8f939e 100644 --- a/Engine.Core/Math.cs +++ b/Engine.Core/Math.cs @@ -1,7 +1,7 @@ using System; using System.Numerics; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public static class Math { diff --git a/Engine.Core/MathExtensions.cs b/Engine.Core/MathExtensions.cs index e98df7f..63f2dcb 100644 --- a/Engine.Core/MathExtensions.cs +++ b/Engine.Core/MathExtensions.cs @@ -1,7 +1,7 @@ using System; using System.Numerics; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public static class MathExtensions { diff --git a/Engine.Core/Preserver.cs b/Engine.Core/Preserver.cs index a7f330e..1832601 100644 --- a/Engine.Core/Preserver.cs +++ b/Engine.Core/Preserver.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core +namespace Engine.Core { // This is pretty much so the assembly gets loaded automatically because // the builds include the assembly but sometimes doesn't link load it at startup. diff --git a/Engine.Core/Primitives/AABB.cs b/Engine.Core/Primitives/AABB.cs index 142e885..3789526 100644 --- a/Engine.Core/Primitives/AABB.cs +++ b/Engine.Core/Primitives/AABB.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents an Axis-Aligned Bounding Box (AABB) in 2D space. diff --git a/Engine.Core/Primitives/Circle.cs b/Engine.Core/Primitives/Circle.cs index 9c3f2ae..bfd1632 100644 --- a/Engine.Core/Primitives/Circle.cs +++ b/Engine.Core/Primitives/Circle.cs @@ -1,6 +1,6 @@ using System.Diagnostics; -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a 2D circle. diff --git a/Engine.Core/Primitives/ColorHSV.cs b/Engine.Core/Primitives/ColorHSV.cs index 6fb9b2c..8cc7b42 100644 --- a/Engine.Core/Primitives/ColorHSV.cs +++ b/Engine.Core/Primitives/ColorHSV.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents an HSV color. diff --git a/Engine.Core/Primitives/ColorHSVA.cs b/Engine.Core/Primitives/ColorHSVA.cs index ee49c6a..3f073c8 100644 --- a/Engine.Core/Primitives/ColorHSVA.cs +++ b/Engine.Core/Primitives/ColorHSVA.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents an HSV color. diff --git a/Engine.Core/Primitives/ColorRGB.cs b/Engine.Core/Primitives/ColorRGB.cs index 67c0d99..e7628cf 100644 --- a/Engine.Core/Primitives/ColorRGB.cs +++ b/Engine.Core/Primitives/ColorRGB.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents an RGB color. diff --git a/Engine.Core/Primitives/ColorRGBA.cs b/Engine.Core/Primitives/ColorRGBA.cs index ea512a4..3dcfe10 100644 --- a/Engine.Core/Primitives/ColorRGBA.cs +++ b/Engine.Core/Primitives/ColorRGBA.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents an RGBA color. diff --git a/Engine.Core/Primitives/Line2D.cs b/Engine.Core/Primitives/Line2D.cs index ee4e272..171fa7c 100644 --- a/Engine.Core/Primitives/Line2D.cs +++ b/Engine.Core/Primitives/Line2D.cs @@ -1,6 +1,6 @@ using System.Diagnostics.CodeAnalysis; -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a 2D line segment defined by two endpoints. diff --git a/Engine.Core/Primitives/Line2DEquation.cs b/Engine.Core/Primitives/Line2DEquation.cs index 19033bf..a6544d2 100644 --- a/Engine.Core/Primitives/Line2DEquation.cs +++ b/Engine.Core/Primitives/Line2DEquation.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a in the form y = mx + b. diff --git a/Engine.Core/Primitives/Projection1D.cs b/Engine.Core/Primitives/Projection1D.cs index 599d53a..2408228 100644 --- a/Engine.Core/Primitives/Projection1D.cs +++ b/Engine.Core/Primitives/Projection1D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a range of values along a single axis. diff --git a/Engine.Core/Primitives/Quaternion.cs b/Engine.Core/Primitives/Quaternion.cs index e2e1e53..68df8dc 100644 --- a/Engine.Core/Primitives/Quaternion.cs +++ b/Engine.Core/Primitives/Quaternion.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a 3D space rotation. diff --git a/Engine.Core/Primitives/Ray2D.cs b/Engine.Core/Primitives/Ray2D.cs index f536179..ddc68c8 100644 --- a/Engine.Core/Primitives/Ray2D.cs +++ b/Engine.Core/Primitives/Ray2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents an infinite ray in 2D space. diff --git a/Engine.Core/Primitives/Shape2D.cs b/Engine.Core/Primitives/Shape2D.cs index 4a8ba84..1bd843f 100644 --- a/Engine.Core/Primitives/Shape2D.cs +++ b/Engine.Core/Primitives/Shape2D.cs @@ -1,7 +1,7 @@ using System.Collections; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a shape defined by a collection of vertices. diff --git a/Engine.Core/Primitives/Triangle.cs b/Engine.Core/Primitives/Triangle.cs index 087d977..d959a63 100644 --- a/Engine.Core/Primitives/Triangle.cs +++ b/Engine.Core/Primitives/Triangle.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; [System.Diagnostics.DebuggerDisplay("A: {A.ToString(), nq}, B: {B.ToString(), nq}, B: {C.ToString(), nq}")] public readonly struct Triangle(Vector2D A, Vector2D B, Vector2D C) diff --git a/Engine.Core/Primitives/Vector2D.cs b/Engine.Core/Primitives/Vector2D.cs index ff327e3..624b9ca 100644 --- a/Engine.Core/Primitives/Vector2D.cs +++ b/Engine.Core/Primitives/Vector2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a two-dimensional vector. diff --git a/Engine.Core/Primitives/Vector3D.cs b/Engine.Core/Primitives/Vector3D.cs index 190caf7..dedbb37 100644 --- a/Engine.Core/Primitives/Vector3D.cs +++ b/Engine.Core/Primitives/Vector3D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a three-dimensional vector. diff --git a/Engine.Core/Serialization/Attributes/IgnoreSerializationAttribute.cs b/Engine.Core/Serialization/Attributes/IgnoreSerializationAttribute.cs index f0dcb16..a8f9207 100644 --- a/Engine.Core/Serialization/Attributes/IgnoreSerializationAttribute.cs +++ b/Engine.Core/Serialization/Attributes/IgnoreSerializationAttribute.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Serialization; +namespace Engine.Core.Serialization; [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Class)] public class IgnoreSerializationAttribute : Attribute; diff --git a/Engine.Core/Serialization/Attributes/SerializeAllAttribute.cs b/Engine.Core/Serialization/Attributes/SerializeAllAttribute.cs index fa6e8a1..6b142f3 100644 --- a/Engine.Core/Serialization/Attributes/SerializeAllAttribute.cs +++ b/Engine.Core/Serialization/Attributes/SerializeAllAttribute.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Serialization; +namespace Engine.Core.Serialization; [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] public class SerializeAllAttribute : Attribute; diff --git a/Engine.Core/Serialization/Attributes/SerializeAttribute.cs b/Engine.Core/Serialization/Attributes/SerializeAttribute.cs index 6f94860..32bebe0 100644 --- a/Engine.Core/Serialization/Attributes/SerializeAttribute.cs +++ b/Engine.Core/Serialization/Attributes/SerializeAttribute.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Serialization; +namespace Engine.Core.Serialization; [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public class SerializeAttribute : Attribute; diff --git a/Engine.Core/Serialization/EntityReference.cs b/Engine.Core/Serialization/EntityReference.cs index 8ad0bd6..07f1fc8 100644 --- a/Engine.Core/Serialization/EntityReference.cs +++ b/Engine.Core/Serialization/EntityReference.cs @@ -1,3 +1,3 @@ -namespace Syntriax.Engine.Core.Serialization; +namespace Engine.Core.Serialization; public record class EntityReference(string? Id = null); diff --git a/Engine.Core/Serialization/EntityRegistry.cs b/Engine.Core/Serialization/EntityRegistry.cs index c02b9d2..6339ba1 100644 --- a/Engine.Core/Serialization/EntityRegistry.cs +++ b/Engine.Core/Serialization/EntityRegistry.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Syntriax.Engine.Core.Serialization; +namespace Engine.Core.Serialization; public class EntityRegistry { diff --git a/Engine.Core/Serialization/ISerializer.cs b/Engine.Core/Serialization/ISerializer.cs index 0ef6962..0ada93c 100644 --- a/Engine.Core/Serialization/ISerializer.cs +++ b/Engine.Core/Serialization/ISerializer.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Serialization; +namespace Engine.Core.Serialization; public interface ISerializer { diff --git a/Engine.Core/Serialization/SerializedClass.cs b/Engine.Core/Serialization/SerializedClass.cs index 992f772..803c83b 100644 --- a/Engine.Core/Serialization/SerializedClass.cs +++ b/Engine.Core/Serialization/SerializedClass.cs @@ -2,9 +2,9 @@ using System; using System.Collections.Generic; using System.Reflection; -using Syntriax.Engine.Core.Factory; +using Engine.Core.Factory; -namespace Syntriax.Engine.Core.Serialization; +namespace Engine.Core.Serialization; public class SerializedClass { diff --git a/Engine.Core/Serialization/TypeContainer.cs b/Engine.Core/Serialization/TypeContainer.cs index 7179745..4b5a359 100644 --- a/Engine.Core/Serialization/TypeContainer.cs +++ b/Engine.Core/Serialization/TypeContainer.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core.Serialization; +namespace Engine.Core.Serialization; public class TypeContainer { diff --git a/Engine.Core/Serialization/Utils.cs b/Engine.Core/Serialization/Utils.cs index 6bf6eb1..9c5f145 100644 --- a/Engine.Core/Serialization/Utils.cs +++ b/Engine.Core/Serialization/Utils.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; -namespace Syntriax.Engine.Core.Serialization; +namespace Engine.Core.Serialization; public static class Utils { diff --git a/Engine.Core/StateEnable.cs b/Engine.Core/StateEnable.cs index 2b4fc9e..fd1d89a 100644 --- a/Engine.Core/StateEnable.cs +++ b/Engine.Core/StateEnable.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class StateEnable : IStateEnable { diff --git a/Engine.Core/Static/Internal/Constants.cs b/Engine.Core/Static/Internal/Constants.cs index 535e17d..800b02b 100644 --- a/Engine.Core/Static/Internal/Constants.cs +++ b/Engine.Core/Static/Internal/Constants.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; internal static class Constants { diff --git a/Engine.Core/Systems/Abstract/IDraw.cs b/Engine.Core/Systems/Abstract/IDraw.cs index 696e551..0f1d430 100644 --- a/Engine.Core/Systems/Abstract/IDraw.cs +++ b/Engine.Core/Systems/Abstract/IDraw.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a to be notified when the draw phase of the occurs. diff --git a/Engine.Core/Systems/Abstract/IEnterUniverse.cs b/Engine.Core/Systems/Abstract/IEnterUniverse.cs index f7d67a1..63703ae 100644 --- a/Engine.Core/Systems/Abstract/IEnterUniverse.cs +++ b/Engine.Core/Systems/Abstract/IEnterUniverse.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public interface IEnterUniverse : IBehaviour { diff --git a/Engine.Core/Systems/Abstract/IExitUniverse.cs b/Engine.Core/Systems/Abstract/IExitUniverse.cs index b8c3db1..8bc3ba3 100644 --- a/Engine.Core/Systems/Abstract/IExitUniverse.cs +++ b/Engine.Core/Systems/Abstract/IExitUniverse.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public interface IExitUniverse : IBehaviour { diff --git a/Engine.Core/Systems/Abstract/IFirstFrameUpdate.cs b/Engine.Core/Systems/Abstract/IFirstFrameUpdate.cs index d3abd57..8a2e5b4 100644 --- a/Engine.Core/Systems/Abstract/IFirstFrameUpdate.cs +++ b/Engine.Core/Systems/Abstract/IFirstFrameUpdate.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public interface IFirstFrameUpdate : IBehaviour { diff --git a/Engine.Core/Systems/Abstract/ILastFrameUpdate.cs b/Engine.Core/Systems/Abstract/ILastFrameUpdate.cs index 9957da1..c3e5132 100644 --- a/Engine.Core/Systems/Abstract/ILastFrameUpdate.cs +++ b/Engine.Core/Systems/Abstract/ILastFrameUpdate.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; public interface ILastFrameUpdate : IBehaviour { diff --git a/Engine.Core/Systems/Abstract/IPostDraw.cs b/Engine.Core/Systems/Abstract/IPostDraw.cs index 38003b2..ce4ec03 100644 --- a/Engine.Core/Systems/Abstract/IPostDraw.cs +++ b/Engine.Core/Systems/Abstract/IPostDraw.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a to be notified after the draw phase of the occurs. diff --git a/Engine.Core/Systems/Abstract/IPostUpdate.cs b/Engine.Core/Systems/Abstract/IPostUpdate.cs index 3802437..4654dde 100644 --- a/Engine.Core/Systems/Abstract/IPostUpdate.cs +++ b/Engine.Core/Systems/Abstract/IPostUpdate.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a to be notified after the update phase of the occurs. diff --git a/Engine.Core/Systems/Abstract/IPreDraw.cs b/Engine.Core/Systems/Abstract/IPreDraw.cs index 7d43801..b13226d 100644 --- a/Engine.Core/Systems/Abstract/IPreDraw.cs +++ b/Engine.Core/Systems/Abstract/IPreDraw.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a to be notified before the draw phase of the occurs. diff --git a/Engine.Core/Systems/Abstract/IPreUpdate.cs b/Engine.Core/Systems/Abstract/IPreUpdate.cs index af3a453..f07d009 100644 --- a/Engine.Core/Systems/Abstract/IPreUpdate.cs +++ b/Engine.Core/Systems/Abstract/IPreUpdate.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a to be notified before the update phase of the occurs. diff --git a/Engine.Core/Systems/Abstract/IUpdate.cs b/Engine.Core/Systems/Abstract/IUpdate.cs index 1e34989..b574148 100644 --- a/Engine.Core/Systems/Abstract/IUpdate.cs +++ b/Engine.Core/Systems/Abstract/IUpdate.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Core; +namespace Engine.Core; /// /// Represents a to be notified when the update phase of the occurs. diff --git a/Engine.Core/Systems/DrawManager.cs b/Engine.Core/Systems/DrawManager.cs index cd7fef0..b385c68 100644 --- a/Engine.Core/Systems/DrawManager.cs +++ b/Engine.Core/Systems/DrawManager.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class DrawManager : Behaviour { diff --git a/Engine.Core/Systems/UniverseEntranceManager.cs b/Engine.Core/Systems/UniverseEntranceManager.cs index 6df3d96..4fa7651 100644 --- a/Engine.Core/Systems/UniverseEntranceManager.cs +++ b/Engine.Core/Systems/UniverseEntranceManager.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class UniverseEntranceManager : Behaviour { diff --git a/Engine.Core/Systems/UpdateManager.cs b/Engine.Core/Systems/UpdateManager.cs index 0777f47..5d0c0cc 100644 --- a/Engine.Core/Systems/UpdateManager.cs +++ b/Engine.Core/Systems/UpdateManager.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public class UpdateManager : Behaviour { diff --git a/Engine.Core/Transform2D.cs b/Engine.Core/Transform2D.cs index 7d14fa9..1c2a8bc 100644 --- a/Engine.Core/Transform2D.cs +++ b/Engine.Core/Transform2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core.Serialization; +using Engine.Core.Serialization; -namespace Syntriax.Engine.Core; +namespace Engine.Core; [System.Diagnostics.DebuggerDisplay("Name: {UniverseObject.Name, nq} Position: {Position.ToString(), nq}, Scale: {Scale.ToString(), nq}, Rotation: {Rotation}")] public class Transform2D : Behaviour, ITransform2D diff --git a/Engine.Core/Universe.cs b/Engine.Core/Universe.cs index ae5a1b3..37c1498 100644 --- a/Engine.Core/Universe.cs +++ b/Engine.Core/Universe.cs @@ -2,7 +2,7 @@ using System; using System.Collections; using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; [System.Diagnostics.DebuggerDisplay("UniverseObject Count: {_universeObjects.Count}")] public class Universe : BaseEntity, IUniverse diff --git a/Engine.Core/UniverseObject.cs b/Engine.Core/UniverseObject.cs index ff1c57f..78307f2 100644 --- a/Engine.Core/UniverseObject.cs +++ b/Engine.Core/UniverseObject.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Syntriax.Engine.Core; +namespace Engine.Core; [System.Diagnostics.DebuggerDisplay("Name: {Name}, Initialized: {Initialized}")] public class UniverseObject : BaseEntity, IUniverseObject diff --git a/Engine.Core/UniverseTime.cs b/Engine.Core/UniverseTime.cs index ed73de7..505fa77 100644 --- a/Engine.Core/UniverseTime.cs +++ b/Engine.Core/UniverseTime.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Core; +namespace Engine.Core; public readonly struct UniverseTime(TimeSpan TimeSinceStart, TimeSpan TimeDelta) { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Engine.Integration.LiteNetLib.csproj b/Engine.Integration/Engine.Integration.LiteNetLib/Engine.Integration.LiteNetLib.csproj index 3a34cb3..f5f119a 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Engine.Integration.LiteNetLib.csproj +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Engine.Integration.LiteNetLib.csproj @@ -4,8 +4,8 @@ net9.0 enable enable - Syntriax.Engine.Systems.Network - Syntriax.Engine.Integration.LiteNetLib + Engine.Systems.Network + Engine.Integration.LiteNetLib diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibClient.cs b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibClient.cs index 0967d57..55887e6 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibClient.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibClient.cs @@ -3,10 +3,10 @@ using System.Net.Sockets; using LiteNetLib; using LiteNetLib.Utils; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Debug; +using Engine.Core; +using Engine.Core.Debug; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public class LiteNetLibClient : LiteNetLibCommunicatorBase, INetworkCommunicatorClient { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibClientConnection.cs b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibClientConnection.cs index 5e2408f..5ce46e0 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibClientConnection.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibClientConnection.cs @@ -1,6 +1,6 @@ using LiteNetLib; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public record class LiteNetLibClientConnection(NetPeer NetPeer) : IConnection { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibCommunicatorBase.cs b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibCommunicatorBase.cs index ed14f12..7691103 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibCommunicatorBase.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibCommunicatorBase.cs @@ -3,10 +3,10 @@ using System.Reflection; using LiteNetLib; using LiteNetLib.Utils; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Debug; +using Engine.Core; +using Engine.Core.Debug; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public abstract class LiteNetLibCommunicatorBase : Behaviour, INetworkCommunicator { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibServer.cs b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibServer.cs index d3fad8e..f77d1e3 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibServer.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibServer.cs @@ -1,10 +1,10 @@ using LiteNetLib; using LiteNetLib.Utils; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Debug; +using Engine.Core; +using Engine.Core.Debug; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public class LiteNetLibServer : LiteNetLibCommunicatorBase, INetworkCommunicatorServer { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibServerConnection.cs b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibServerConnection.cs index 66f8f3b..a215b74 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibServerConnection.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/LiteNetLibServerConnection.cs @@ -1,6 +1,6 @@ using LiteNetLib; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public record class LiteNetLibServerConnection(NetPeer NetPeer) : IConnection { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/AABBNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/AABBNetPacker.cs index e8ed56e..0af57aa 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/AABBNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/AABBNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class AABBNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/CircleNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/CircleNetPacker.cs index 5545dca..9cd748f 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/CircleNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/CircleNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class CircleNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorHSVNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorHSVNetPacker.cs index af868c8..a7a24be 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorHSVNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorHSVNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class ColorHSVNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorRGBANetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorRGBANetPacker.cs index 0b20f06..ea5f409 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorRGBANetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorRGBANetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class ColorRGBANetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorRGBNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorRGBNetPacker.cs index 46770e1..4243143 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorRGBNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/ColorRGBNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class ColorRGBNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Line2DEquationNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Line2DEquationNetPacker.cs index 3bcfe70..e3c2228 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Line2DEquationNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Line2DEquationNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class Line2DEquationNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Line2DNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Line2DNetPacker.cs index 899b0f7..4340670 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Line2DNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Line2DNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class Line2DNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Projection1DNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Projection1DNetPacker.cs index 0a356ef..753f037 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Projection1DNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Projection1DNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class Projection1DNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/QuaternionNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/QuaternionNetPacker.cs index a1241be..fbda6ce 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/QuaternionNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/QuaternionNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class QuaternionNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Shape2DNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Shape2DNetPacker.cs index 525185f..97ceea8 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Shape2DNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Shape2DNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class Shape2DNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/TriangleNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/TriangleNetPacker.cs index 8c22746..53b3481 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/TriangleNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/TriangleNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class TriangleNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Vector2DNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Vector2DNetPacker.cs index 5f1485f..93f60e1 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Vector2DNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Vector2DNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class Vector2DNetPacker { diff --git a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Vector3DNetPacker.cs b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Vector3DNetPacker.cs index d594104..393152c 100644 --- a/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Vector3DNetPacker.cs +++ b/Engine.Integration/Engine.Integration.LiteNetLib/Packers/Vector3DNetPacker.cs @@ -1,8 +1,8 @@ using LiteNetLib.Utils; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; internal static class Vector3DNetPacker { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Abstract/IDrawableSprite.cs b/Engine.Integration/Engine.Integration.MonoGame/Abstract/IDrawableSprite.cs index 2e39ff7..a0e2211 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Abstract/IDrawableSprite.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Abstract/IDrawableSprite.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public interface IDrawableSprite : IBehaviour { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Abstract/IDrawableTriangle.cs b/Engine.Integration/Engine.Integration.MonoGame/Abstract/IDrawableTriangle.cs index 937d559..7d3372d 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Abstract/IDrawableTriangle.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Abstract/IDrawableTriangle.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public interface IDrawableTriangle : IBehaviour { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Abstract/ILoadContent.cs b/Engine.Integration/Engine.Integration.MonoGame/Abstract/ILoadContent.cs index 042a5b7..d838772 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Abstract/ILoadContent.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Abstract/ILoadContent.cs @@ -1,8 +1,8 @@ using Microsoft.Xna.Framework.Content; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public interface ILoadContent : IBehaviour { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Abstract/ISpriteBatch.cs b/Engine.Integration/Engine.Integration.MonoGame/Abstract/ISpriteBatch.cs index 88a4f82..0939141 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Abstract/ISpriteBatch.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Abstract/ISpriteBatch.cs @@ -3,9 +3,9 @@ using System.Text; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public interface ISpriteBatch { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Abstract/ITriangleBatch.cs b/Engine.Integration/Engine.Integration.MonoGame/Abstract/ITriangleBatch.cs index 08f190a..1de8f80 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Abstract/ITriangleBatch.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Abstract/ITriangleBatch.cs @@ -1,8 +1,8 @@ using Microsoft.Xna.Framework; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public interface ITriangleBatch { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/DrawableShape.cs b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/DrawableShape.cs index ba31f23..0078088 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/DrawableShape.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/DrawableShape.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public class DrawableShape : Behaviour2D, IDrawableTriangle, IPreDraw { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/KeyboardInputs.cs b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/KeyboardInputs.cs index 350e92f..fbb8a77 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/KeyboardInputs.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/KeyboardInputs.cs @@ -3,10 +3,10 @@ using System.Collections.Generic; using Microsoft.Xna.Framework.Input; -using Syntriax.Engine.Core; -using Syntriax.Engine.Systems.Input; +using Engine.Core; +using Engine.Systems.Input; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public class KeyboardInputs : Behaviour, IButtonInputs, IUpdate { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/LoadContentManager.cs b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/LoadContentManager.cs index ccaf8da..a8eec5b 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/LoadContentManager.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/LoadContentManager.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public class LoadContentManager : Behaviour, IFirstFrameUpdate { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/MonoGameCamera2D.cs b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/MonoGameCamera2D.cs index 7357ae7..0f0dc85 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/MonoGameCamera2D.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/MonoGameCamera2D.cs @@ -1,9 +1,9 @@ using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public class MonoGameCamera2D : BehaviourBase, ICamera2D, IFirstFrameUpdate, IPreDraw { @@ -56,7 +56,7 @@ public class MonoGameCamera2D : BehaviourBase, ICamera2D, IFirstFrameUpdate, IPr get => _zoom; set { - float newValue = Syntriax.Engine.Core.Math.Max(0.1f, value); + float newValue = Engine.Core.Math.Max(0.1f, value); if (_zoom == newValue) return; @@ -94,7 +94,7 @@ public class MonoGameCamera2D : BehaviourBase, ICamera2D, IFirstFrameUpdate, IPr { MatrixTransform = Matrix.CreateTranslation(new Vector3(-Position.X, Position.Y, 0f)) * - Matrix.CreateRotationZ(Rotation * Syntriax.Engine.Core.Math.DegreeToRadian) * + Matrix.CreateRotationZ(Rotation * Engine.Core.Math.DegreeToRadian) * Matrix.CreateScale(Transform.Scale.X.Max(Transform.Scale.Y)) * Matrix.CreateScale(Zoom) * Matrix.CreateTranslation(new Vector3(_viewport.Width * .5f, _viewport.Height * .5f, 0f)); diff --git a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/SpriteBatchWrapper.cs b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/SpriteBatchWrapper.cs index 9fa617b..7e40376 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/SpriteBatchWrapper.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/SpriteBatchWrapper.cs @@ -3,9 +3,9 @@ using System.Text; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public class SpriteBatchWrapper(GraphicsDevice graphicsDevice) : ISpriteBatch { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/SpriteBatcher.cs b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/SpriteBatcher.cs index f3f57ae..e2e1cd6 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/SpriteBatcher.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/SpriteBatcher.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public class SpriteBatcher : BehaviourBase, IFirstFrameUpdate, IDraw { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/TriangleBatcher.cs b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/TriangleBatcher.cs index 11bca97..1fafe41 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Behaviours/TriangleBatcher.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/Behaviours/TriangleBatcher.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using Microsoft.Xna.Framework; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public class TriangleBatcher : BehaviourBase, ITriangleBatch, IFirstFrameUpdate, IDraw { diff --git a/Engine.Integration/Engine.Integration.MonoGame/Engine.Integration.MonoGame.csproj b/Engine.Integration/Engine.Integration.MonoGame/Engine.Integration.MonoGame.csproj index cd49b65..4f66f9a 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/Engine.Integration.MonoGame.csproj +++ b/Engine.Integration/Engine.Integration.MonoGame/Engine.Integration.MonoGame.csproj @@ -3,7 +3,8 @@ net9.0 disable enable - Syntriax.Engine.Integration.MonoGame + Engine.Integration.MonoGame + Engine.Integration.MonoGame diff --git a/Engine.Integration/Engine.Integration.MonoGame/EngineConverter.cs b/Engine.Integration/Engine.Integration.MonoGame/EngineConverter.cs index cea1b55..b1c408f 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/EngineConverter.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/EngineConverter.cs @@ -3,9 +3,9 @@ using System.Runtime.CompilerServices; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public static class EngineConverterExtensions { diff --git a/Engine.Integration/Engine.Integration.MonoGame/MonoGameWindow.cs b/Engine.Integration/Engine.Integration.MonoGame/MonoGameWindow.cs index 8b8740c..7decf16 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/MonoGameWindow.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/MonoGameWindow.cs @@ -1,9 +1,9 @@ using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public class MonoGameWindow : Game { diff --git a/Engine.Integration/Engine.Integration.MonoGame/TriangleBatch.cs b/Engine.Integration/Engine.Integration.MonoGame/TriangleBatch.cs index a03c852..bc9ec50 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/TriangleBatch.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/TriangleBatch.cs @@ -1,9 +1,9 @@ using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; public class TriangleBatch : ITriangleBatch { diff --git a/Engine.Integration/Engine.Integration.MonoGame/UniverseObjects/MonoGameWindowContainer.cs b/Engine.Integration/Engine.Integration.MonoGame/UniverseObjects/MonoGameWindowContainer.cs index eba7e18..f4b8016 100644 --- a/Engine.Integration/Engine.Integration.MonoGame/UniverseObjects/MonoGameWindowContainer.cs +++ b/Engine.Integration/Engine.Integration.MonoGame/UniverseObjects/MonoGameWindowContainer.cs @@ -1,7 +1,7 @@ -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; -namespace Syntriax.Engine.Integration.MonoGame; +namespace Engine.Integration.MonoGame; [IgnoreSerialization] public class MonoGameWindowContainer(MonoGameWindow GameWindow) : BehaviourBase diff --git a/Engine.Physics2D/Abstract/ICircleCollider2D.cs b/Engine.Physics2D/Abstract/ICircleCollider2D.cs index fff33bd..3384f1c 100644 --- a/Engine.Physics2D/Abstract/ICircleCollider2D.cs +++ b/Engine.Physics2D/Abstract/ICircleCollider2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a with the shape of a . diff --git a/Engine.Physics2D/Abstract/ICollider2D.cs b/Engine.Physics2D/Abstract/ICollider2D.cs index fdc1ffd..38f0c75 100644 --- a/Engine.Physics2D/Abstract/ICollider2D.cs +++ b/Engine.Physics2D/Abstract/ICollider2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a 2D collider. diff --git a/Engine.Physics2D/Abstract/ICollisionDetector2D.cs b/Engine.Physics2D/Abstract/ICollisionDetector2D.cs index ed6e307..9f11739 100644 --- a/Engine.Physics2D/Abstract/ICollisionDetector2D.cs +++ b/Engine.Physics2D/Abstract/ICollisionDetector2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a 2D collision detector. diff --git a/Engine.Physics2D/Abstract/ICollisionResolver2D.cs b/Engine.Physics2D/Abstract/ICollisionResolver2D.cs index e5b10ff..9d7851f 100644 --- a/Engine.Physics2D/Abstract/ICollisionResolver2D.cs +++ b/Engine.Physics2D/Abstract/ICollisionResolver2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a 2D collision resolver. diff --git a/Engine.Physics2D/Abstract/IPhysicsEngine2D.cs b/Engine.Physics2D/Abstract/IPhysicsEngine2D.cs index 323a31e..f281349 100644 --- a/Engine.Physics2D/Abstract/IPhysicsEngine2D.cs +++ b/Engine.Physics2D/Abstract/IPhysicsEngine2D.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a 2D physics engine. diff --git a/Engine.Physics2D/Abstract/IPhysicsMaterial2D.cs b/Engine.Physics2D/Abstract/IPhysicsMaterial2D.cs index 4bfc716..1605eb3 100644 --- a/Engine.Physics2D/Abstract/IPhysicsMaterial2D.cs +++ b/Engine.Physics2D/Abstract/IPhysicsMaterial2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a 2D physics object's responsive attributes. diff --git a/Engine.Physics2D/Abstract/IRaycastResolver2D.cs b/Engine.Physics2D/Abstract/IRaycastResolver2D.cs index 28fc459..190d5d1 100644 --- a/Engine.Physics2D/Abstract/IRaycastResolver2D.cs +++ b/Engine.Physics2D/Abstract/IRaycastResolver2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a 2D raycast resolver. diff --git a/Engine.Physics2D/Abstract/IRigidBody2D.cs b/Engine.Physics2D/Abstract/IRigidBody2D.cs index b7292cd..871fc0e 100644 --- a/Engine.Physics2D/Abstract/IRigidBody2D.cs +++ b/Engine.Physics2D/Abstract/IRigidBody2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace 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 925751a..99a3802 100644 --- a/Engine.Physics2D/Abstract/IShapeCollider2D.cs +++ b/Engine.Physics2D/Abstract/IShapeCollider2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a with a custom . diff --git a/Engine.Physics2D/Abstract/RaycastResult.cs b/Engine.Physics2D/Abstract/RaycastResult.cs index 55a56f2..2e6f236 100644 --- a/Engine.Physics2D/Abstract/RaycastResult.cs +++ b/Engine.Physics2D/Abstract/RaycastResult.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public readonly struct RaycastResult(Ray2D ray, ICollider2D collider2D, Vector2D position, Vector2D normal) { diff --git a/Engine.Physics2D/Abstract/Updates/IPhysicsIteration.cs b/Engine.Physics2D/Abstract/Updates/IPhysicsIteration.cs index 103837a..c1b3737 100644 --- a/Engine.Physics2D/Abstract/Updates/IPhysicsIteration.cs +++ b/Engine.Physics2D/Abstract/Updates/IPhysicsIteration.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a that listens to physics simulation update phase. diff --git a/Engine.Physics2D/Abstract/Updates/IPhysicsUpdate.cs b/Engine.Physics2D/Abstract/Updates/IPhysicsUpdate.cs index f447dfa..b596965 100644 --- a/Engine.Physics2D/Abstract/Updates/IPhysicsUpdate.cs +++ b/Engine.Physics2D/Abstract/Updates/IPhysicsUpdate.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a that listens to physics simulation update phase. diff --git a/Engine.Physics2D/Abstract/Updates/IPostPhysicsUpdate.cs b/Engine.Physics2D/Abstract/Updates/IPostPhysicsUpdate.cs index e6edb47..31e74ba 100644 --- a/Engine.Physics2D/Abstract/Updates/IPostPhysicsUpdate.cs +++ b/Engine.Physics2D/Abstract/Updates/IPostPhysicsUpdate.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a that listens to the phase after the physics simulation phase. diff --git a/Engine.Physics2D/Abstract/Updates/IPrePhysicsUpdate.cs b/Engine.Physics2D/Abstract/Updates/IPrePhysicsUpdate.cs index 4de7d66..dfd9f7c 100644 --- a/Engine.Physics2D/Abstract/Updates/IPrePhysicsUpdate.cs +++ b/Engine.Physics2D/Abstract/Updates/IPrePhysicsUpdate.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; /// /// Represents a that listens to the phase before the physics simulation phase. diff --git a/Engine.Physics2D/Collider2DBase.cs b/Engine.Physics2D/Collider2DBase.cs index bca0735..b0aef94 100644 --- a/Engine.Physics2D/Collider2DBase.cs +++ b/Engine.Physics2D/Collider2DBase.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public abstract class Collider2DBase : Behaviour2D, ICollider2D { diff --git a/Engine.Physics2D/Collider2DCircle.cs b/Engine.Physics2D/Collider2DCircle.cs index 5d2f8cb..8291b08 100644 --- a/Engine.Physics2D/Collider2DCircle.cs +++ b/Engine.Physics2D/Collider2DCircle.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public class Collider2DCircle : Collider2DBase, ICircleCollider2D { diff --git a/Engine.Physics2D/Collider2DShape.cs b/Engine.Physics2D/Collider2DShape.cs index 7f2b51a..10113f4 100644 --- a/Engine.Physics2D/Collider2DShape.cs +++ b/Engine.Physics2D/Collider2DShape.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public class Collider2DShape : Collider2DBase, IShapeCollider2D { diff --git a/Engine.Physics2D/CollisionDetectionInformation.cs b/Engine.Physics2D/CollisionDetectionInformation.cs index 6476df0..62e564a 100644 --- a/Engine.Physics2D/CollisionDetectionInformation.cs +++ b/Engine.Physics2D/CollisionDetectionInformation.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; [System.Diagnostics.DebuggerDisplay("Normal: {Normal.ToString(), nq}, Penetration: {Penetration}")] public readonly struct CollisionDetectionInformation diff --git a/Engine.Physics2D/CollisionDetector2D.cs b/Engine.Physics2D/CollisionDetector2D.cs index 8b1508b..760c086 100644 --- a/Engine.Physics2D/CollisionDetector2D.cs +++ b/Engine.Physics2D/CollisionDetector2D.cs @@ -1,7 +1,7 @@ -using Syntriax.Engine.Core; -using Syntriax.Engine.Physics2D; +using Engine.Core; +using Engine.Physics2D; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public class CollisionDetector2D : ICollisionDetector2D { diff --git a/Engine.Physics2D/CollisionResolver2D.cs b/Engine.Physics2D/CollisionResolver2D.cs index 4918a59..90341be 100644 --- a/Engine.Physics2D/CollisionResolver2D.cs +++ b/Engine.Physics2D/CollisionResolver2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public class CollisionResolver2D : ICollisionResolver2D { diff --git a/Engine.Physics2D/Engine.Physics2D.csproj b/Engine.Physics2D/Engine.Physics2D.csproj index ba7ce86..7119153 100644 --- a/Engine.Physics2D/Engine.Physics2D.csproj +++ b/Engine.Physics2D/Engine.Physics2D.csproj @@ -4,7 +4,8 @@ net9.0 disable enable - Syntriax.Engine.Physics2D + Engine.Physics2D + Engine.Physics2D diff --git a/Engine.Physics2D/Physics2D.cs b/Engine.Physics2D/Physics2D.cs index edb3335..1dd6b0b 100644 --- a/Engine.Physics2D/Physics2D.cs +++ b/Engine.Physics2D/Physics2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public static class Physics2D { diff --git a/Engine.Physics2D/PhysicsCoroutineManager.cs b/Engine.Physics2D/PhysicsCoroutineManager.cs index 47fb742..573a5d4 100644 --- a/Engine.Physics2D/PhysicsCoroutineManager.cs +++ b/Engine.Physics2D/PhysicsCoroutineManager.cs @@ -1,9 +1,9 @@ using System.Collections; using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public class PhysicsCoroutineManager : Behaviour, IPhysicsUpdate { diff --git a/Engine.Physics2D/PhysicsEngine2D.cs b/Engine.Physics2D/PhysicsEngine2D.cs index 10de29b..8b75a22 100644 --- a/Engine.Physics2D/PhysicsEngine2D.cs +++ b/Engine.Physics2D/PhysicsEngine2D.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public class PhysicsEngine2D : Behaviour, IPreUpdate, IPhysicsEngine2D { diff --git a/Engine.Physics2D/PhysicsEngine2DStandalone.cs b/Engine.Physics2D/PhysicsEngine2DStandalone.cs index 5de9885..11c313c 100644 --- a/Engine.Physics2D/PhysicsEngine2DStandalone.cs +++ b/Engine.Physics2D/PhysicsEngine2DStandalone.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public class PhysicsEngine2DStandalone : IPhysicsEngine2D { diff --git a/Engine.Physics2D/PhysicsMaterial2D.cs b/Engine.Physics2D/PhysicsMaterial2D.cs index 616c26f..a3875ca 100644 --- a/Engine.Physics2D/PhysicsMaterial2D.cs +++ b/Engine.Physics2D/PhysicsMaterial2D.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public readonly struct PhysicsMaterial2D(float Friction, float Restitution) : IPhysicsMaterial2D { diff --git a/Engine.Physics2D/PhysicsMaterial2DDefault.cs b/Engine.Physics2D/PhysicsMaterial2DDefault.cs index faf0e31..1ed446e 100644 --- a/Engine.Physics2D/PhysicsMaterial2DDefault.cs +++ b/Engine.Physics2D/PhysicsMaterial2DDefault.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public readonly struct PhysicsMaterial2DDefault : IPhysicsMaterial2D { diff --git a/Engine.Physics2D/Preserver.cs b/Engine.Physics2D/Preserver.cs index be2dfe1..a446f3f 100644 --- a/Engine.Physics2D/Preserver.cs +++ b/Engine.Physics2D/Preserver.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Physics2D +namespace Engine.Physics2D { // This is pretty much so the assembly gets loaded automatically because // the builds include the assembly but sometimes doesn't link load it at startup. diff --git a/Engine.Physics2D/RaycastResolver2D.cs b/Engine.Physics2D/RaycastResolver2D.cs index 726a2e5..e933e66 100644 --- a/Engine.Physics2D/RaycastResolver2D.cs +++ b/Engine.Physics2D/RaycastResolver2D.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public class RaycastResolver2D : IRaycastResolver2D { diff --git a/Engine.Physics2D/RigidBody2D.cs b/Engine.Physics2D/RigidBody2D.cs index c5584eb..8d9c1f9 100644 --- a/Engine.Physics2D/RigidBody2D.cs +++ b/Engine.Physics2D/RigidBody2D.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Physics2D; +namespace Engine.Physics2D; public class RigidBody2D : Behaviour2D, IRigidBody2D { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Abstract/IEngineTypeYamlConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Abstract/IEngineTypeYamlConverter.cs index e9812d9..873b796 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Abstract/IEngineTypeYamlConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Abstract/IEngineTypeYamlConverter.cs @@ -1,9 +1,9 @@ -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public interface IEngineTypeYamlConverter : IYamlTypeConverter { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/BehaviourControllerConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/BehaviourControllerConverter.cs index 770f9f1..97ed522 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/BehaviourControllerConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/BehaviourControllerConverter.cs @@ -2,14 +2,14 @@ using System; using System.Collections.Generic; using System.Linq; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class BehaviourControllerConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/BehaviourConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/BehaviourConverter.cs index eebfdd1..abc3b97 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/BehaviourConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/BehaviourConverter.cs @@ -1,13 +1,13 @@ using System; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class BehaviourConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/EngineTypeYamlConverterBase.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/EngineTypeYamlConverterBase.cs index 4e8d731..134e922 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/EngineTypeYamlConverterBase.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/EngineTypeYamlConverterBase.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; using YamlDotNet.Core; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public abstract class EngineTypeYamlSerializerBase : IEngineTypeYamlConverter { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/AABBConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/AABBConverter.cs index bfc0001..d09150d 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/AABBConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/AABBConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class AABBConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/CircleConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/CircleConverter.cs index 32ad922..d06bc53 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/CircleConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/CircleConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class CircleConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorHSVConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorHSVConverter.cs index b5bb4ca..a03f490 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorHSVConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorHSVConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class ColorHSVConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorRGBAConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorRGBAConverter.cs index 8243a0b..50ec7aa 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorRGBAConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorRGBAConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class ColorRGBAConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorRGBConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorRGBConverter.cs index 809db2a..8133885 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorRGBConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/ColorRGBConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class ColorRGBConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Line2DConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Line2DConverter.cs index 85551c0..1d45331 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Line2DConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Line2DConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class Line2DConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Line2DEquationConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Line2DEquationConverter.cs index da70ea2..ed13cc4 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Line2DEquationConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Line2DEquationConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class Line2DEquationConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Projection1DConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Projection1DConverter.cs index 9bad9bf..b1ea9fe 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Projection1DConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Projection1DConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class Projection1DConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/QuaternionConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/QuaternionConverter.cs index 66e2a0d..76317b3 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/QuaternionConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/QuaternionConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class QuaternionConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Shape2DConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Shape2DConverter.cs index 239546e..cd88d96 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Shape2DConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Shape2DConverter.cs @@ -1,13 +1,13 @@ using System; using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class Shape2DConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/TriangleConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/TriangleConverter.cs index d98efbb..c544b37 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/TriangleConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/TriangleConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class TriangleConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Vector2DConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Vector2DConverter.cs index 1c1b420..654416c 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Vector2DConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Vector2DConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class Vector2DConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Vector3DConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Vector3DConverter.cs index 64f49c2..4bdca07 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Vector3DConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/Primitives/Vector3DConverter.cs @@ -1,12 +1,12 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class Vector3DConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/SerializedClassConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/SerializedClassConverter.cs index 2dd9455..aef2822 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/SerializedClassConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/SerializedClassConverter.cs @@ -2,15 +2,15 @@ using System; using System.Collections.Generic; using System.Linq; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Factory; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Factory; +using Engine.Core.Serialization; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class SerializedClassConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/StateEnableConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/StateEnableConverter.cs index 1135bf5..9c317b0 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/StateEnableConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/StateEnableConverter.cs @@ -1,13 +1,13 @@ using System; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class StateEnableConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/TypeContainerConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/TypeContainerConverter.cs index 0b7a665..94f045c 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/TypeContainerConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/TypeContainerConverter.cs @@ -1,13 +1,13 @@ using System; -using Syntriax.Engine.Core.Serialization; -using Syntriax.Engine.Core.Factory; +using Engine.Core.Serialization; +using Engine.Core.Factory; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class TypeContainerConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/UniverseConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/UniverseConverter.cs index 1fbf978..6fdf87e 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/UniverseConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/UniverseConverter.cs @@ -2,14 +2,14 @@ using System; using System.Collections.Generic; using System.Linq; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class UniverseConverter : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Converters/UniverseObjectConverter.cs b/Engine.Serializers/Engine.Serializers.Yaml/Converters/UniverseObjectConverter.cs index 527e2b0..76268fe 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Converters/UniverseObjectConverter.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/Converters/UniverseObjectConverter.cs @@ -2,14 +2,14 @@ using System; using System.Collections.Generic; using System.Linq; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; using YamlDotNet.Core; using YamlDotNet.Core.Events; using YamlDotNet.Serialization; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class UniverseObjectSerializer : EngineTypeYamlSerializerBase { diff --git a/Engine.Serializers/Engine.Serializers.Yaml/Engine.Serializers.Yaml.csproj b/Engine.Serializers/Engine.Serializers.Yaml/Engine.Serializers.Yaml.csproj index c56d15f..59ce055 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/Engine.Serializers.Yaml.csproj +++ b/Engine.Serializers/Engine.Serializers.Yaml/Engine.Serializers.Yaml.csproj @@ -4,7 +4,8 @@ net9.0 disable enable - Syntriax.Engine.Serializers.Yaml + Engine.Serializers.Yaml + Engine.Serializers.Yaml diff --git a/Engine.Serializers/Engine.Serializers.Yaml/SerializerInProgressException.cs b/Engine.Serializers/Engine.Serializers.Yaml/SerializerInProgressException.cs index 2b03c0b..7ca2cc3 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/SerializerInProgressException.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/SerializerInProgressException.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; [Serializable] public class SerializerInProgressException() : Exception("There's already a running deserialization in progress."); diff --git a/Engine.Serializers/Engine.Serializers.Yaml/YamlSerializer.cs b/Engine.Serializers/Engine.Serializers.Yaml/YamlSerializer.cs index 15d5f2f..1dfadd1 100644 --- a/Engine.Serializers/Engine.Serializers.Yaml/YamlSerializer.cs +++ b/Engine.Serializers/Engine.Serializers.Yaml/YamlSerializer.cs @@ -4,13 +4,13 @@ using System.Linq; using System.Reflection; using System.Threading.Tasks; -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; using YamlDotNet.Serialization; using YamlDotNet.Serialization.NamingConventions; -namespace Syntriax.Engine.Serializers.Yaml; +namespace Engine.Serializers.Yaml; public class YamlSerializer : Core.Serialization.ISerializer { diff --git a/Engine.Systems/Engine.Systems.csproj b/Engine.Systems/Engine.Systems.csproj index 967f31f..11a1757 100644 --- a/Engine.Systems/Engine.Systems.csproj +++ b/Engine.Systems/Engine.Systems.csproj @@ -4,7 +4,8 @@ net9.0 disable enable - Syntriax.Engine.Systems + Engine.Systems + Engine.Systems diff --git a/Engine.Systems/Input/IButtonInputs.cs b/Engine.Systems/Input/IButtonInputs.cs index 75cd678..3b54529 100644 --- a/Engine.Systems/Input/IButtonInputs.cs +++ b/Engine.Systems/Input/IButtonInputs.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Input; +namespace Engine.Systems.Input; public interface IButtonInputs : IHasStateEnable { diff --git a/Engine.Systems/Network/Abstract/IConnection.cs b/Engine.Systems/Network/Abstract/IConnection.cs index 30aeecf..f43a87c 100644 --- a/Engine.Systems/Network/Abstract/IConnection.cs +++ b/Engine.Systems/Network/Abstract/IConnection.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public interface IConnection { diff --git a/Engine.Systems/Network/Abstract/IEntityNetworkPacket.cs b/Engine.Systems/Network/Abstract/IEntityNetworkPacket.cs index 7d1ee2a..5f05e16 100644 --- a/Engine.Systems/Network/Abstract/IEntityNetworkPacket.cs +++ b/Engine.Systems/Network/Abstract/IEntityNetworkPacket.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public interface IEntityNetworkPacket : INetworkPacket { diff --git a/Engine.Systems/Network/Abstract/INetworkCommunicator.cs b/Engine.Systems/Network/Abstract/INetworkCommunicator.cs index 95e28a1..6ae2cc7 100644 --- a/Engine.Systems/Network/Abstract/INetworkCommunicator.cs +++ b/Engine.Systems/Network/Abstract/INetworkCommunicator.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public interface INetworkCommunicator { diff --git a/Engine.Systems/Network/Abstract/INetworkEntity.cs b/Engine.Systems/Network/Abstract/INetworkEntity.cs index 1e6a1f6..3baa040 100644 --- a/Engine.Systems/Network/Abstract/INetworkEntity.cs +++ b/Engine.Systems/Network/Abstract/INetworkEntity.cs @@ -1,5 +1,5 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public interface INetworkEntity : IEntity; diff --git a/Engine.Systems/Network/Abstract/INetworkManager.cs b/Engine.Systems/Network/Abstract/INetworkManager.cs index 3f9c950..306f001 100644 --- a/Engine.Systems/Network/Abstract/INetworkManager.cs +++ b/Engine.Systems/Network/Abstract/INetworkManager.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public interface INetworkManager { diff --git a/Engine.Systems/Network/Abstract/INetworkPacket.cs b/Engine.Systems/Network/Abstract/INetworkPacket.cs index 042f14d..25d9438 100644 --- a/Engine.Systems/Network/Abstract/INetworkPacket.cs +++ b/Engine.Systems/Network/Abstract/INetworkPacket.cs @@ -1,3 +1,3 @@ -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public interface INetworkPacket; diff --git a/Engine.Systems/Network/Abstract/IPacketListenerClient.cs b/Engine.Systems/Network/Abstract/IPacketListenerClient.cs index bfe39d7..39576fa 100644 --- a/Engine.Systems/Network/Abstract/IPacketListenerClient.cs +++ b/Engine.Systems/Network/Abstract/IPacketListenerClient.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public interface IPacketListenerClient : INetworkEntity { diff --git a/Engine.Systems/Network/Abstract/IPacketListenerServer.cs b/Engine.Systems/Network/Abstract/IPacketListenerServer.cs index b084949..6508db4 100644 --- a/Engine.Systems/Network/Abstract/IPacketListenerServer.cs +++ b/Engine.Systems/Network/Abstract/IPacketListenerServer.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public interface IPacketListenerServer : INetworkEntity { diff --git a/Engine.Systems/Network/Abstract/PacketDelivery.cs b/Engine.Systems/Network/Abstract/PacketDelivery.cs index 2fce6d0..a35d9a2 100644 --- a/Engine.Systems/Network/Abstract/PacketDelivery.cs +++ b/Engine.Systems/Network/Abstract/PacketDelivery.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; public enum PacketDelivery { diff --git a/Engine.Systems/Network/NetworkManager.cs b/Engine.Systems/Network/NetworkManager.cs index 915782b..53d9c5c 100644 --- a/Engine.Systems/Network/NetworkManager.cs +++ b/Engine.Systems/Network/NetworkManager.cs @@ -3,9 +3,9 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Network; +namespace Engine.Systems.Network; /// /// Intermediary manager that looks up in it's hierarchy for a to route/broadcast it's received packets to their destinations. diff --git a/Engine.Systems/Preserver.cs b/Engine.Systems/Preserver.cs index dbfab6f..92ac222 100644 --- a/Engine.Systems/Preserver.cs +++ b/Engine.Systems/Preserver.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems +namespace Engine.Systems { // This is pretty much so the assembly gets loaded automatically because // the builds include the assembly but sometimes doesn't link load it at startup. diff --git a/Engine.Systems/StateMachine/IState.cs b/Engine.Systems/StateMachine/IState.cs index f30b260..c29b0bc 100644 --- a/Engine.Systems/StateMachine/IState.cs +++ b/Engine.Systems/StateMachine/IState.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.StateMachine; +namespace Engine.Systems.StateMachine; public interface IState : IEntity, INameable { diff --git a/Engine.Systems/StateMachine/State.cs b/Engine.Systems/StateMachine/State.cs index 86b030e..0c34a56 100644 --- a/Engine.Systems/StateMachine/State.cs +++ b/Engine.Systems/StateMachine/State.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.StateMachine; +namespace Engine.Systems.StateMachine; public class State : BaseEntity, IState { diff --git a/Engine.Systems/StateMachine/StateBehaviourBase.cs b/Engine.Systems/StateMachine/StateBehaviourBase.cs index efc6c9a..1ee7790 100644 --- a/Engine.Systems/StateMachine/StateBehaviourBase.cs +++ b/Engine.Systems/StateMachine/StateBehaviourBase.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.StateMachine; +namespace Engine.Systems.StateMachine; public abstract class StateBehaviourBase : Behaviour, IState { diff --git a/Engine.Systems/StateMachine/StateMachine.cs b/Engine.Systems/StateMachine/StateMachine.cs index 28f97b3..e8f009b 100644 --- a/Engine.Systems/StateMachine/StateMachine.cs +++ b/Engine.Systems/StateMachine/StateMachine.cs @@ -1,7 +1,7 @@ -using Syntriax.Engine.Core; -using Syntriax.Engine.Core.Serialization; +using Engine.Core; +using Engine.Core.Serialization; -namespace Syntriax.Engine.Systems.StateMachine; +namespace Engine.Systems.StateMachine; public class StateMachine : Behaviour, IUpdate { diff --git a/Engine.Systems/StateMachine/StateTransition.cs b/Engine.Systems/StateMachine/StateTransition.cs index ab02331..48dff73 100644 --- a/Engine.Systems/StateMachine/StateTransition.cs +++ b/Engine.Systems/StateMachine/StateTransition.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; using System.Linq; -namespace Syntriax.Engine.Systems.StateMachine; +namespace Engine.Systems.StateMachine; public readonly record struct StateTransition(IState State, IReadOnlyList> Conditions) { diff --git a/Engine.Systems/Time/IReadOnlyStopwatch.cs b/Engine.Systems/Time/IReadOnlyStopwatch.cs index ea28155..e702c19 100644 --- a/Engine.Systems/Time/IReadOnlyStopwatch.cs +++ b/Engine.Systems/Time/IReadOnlyStopwatch.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public interface IReadOnlyStopwatch { diff --git a/Engine.Systems/Time/IReadOnlyTicker.cs b/Engine.Systems/Time/IReadOnlyTicker.cs index 665671f..6d7d799 100644 --- a/Engine.Systems/Time/IReadOnlyTicker.cs +++ b/Engine.Systems/Time/IReadOnlyTicker.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public interface IReadOnlyTicker : IReadOnlyStopwatch { diff --git a/Engine.Systems/Time/IReadOnlyTimer.cs b/Engine.Systems/Time/IReadOnlyTimer.cs index bca3ab7..cb1ca5e 100644 --- a/Engine.Systems/Time/IReadOnlyTimer.cs +++ b/Engine.Systems/Time/IReadOnlyTimer.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public interface IReadOnlyTimer { diff --git a/Engine.Systems/Time/IStopwatch.cs b/Engine.Systems/Time/IStopwatch.cs index 46e3cbc..aca070a 100644 --- a/Engine.Systems/Time/IStopwatch.cs +++ b/Engine.Systems/Time/IStopwatch.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public interface IStopwatch : IReadOnlyStopwatch { diff --git a/Engine.Systems/Time/ITicker.cs b/Engine.Systems/Time/ITicker.cs index 17ec73d..ae18ab8 100644 --- a/Engine.Systems/Time/ITicker.cs +++ b/Engine.Systems/Time/ITicker.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public interface ITicker { diff --git a/Engine.Systems/Time/ITimer.cs b/Engine.Systems/Time/ITimer.cs index 8e313f9..31f4e2f 100644 --- a/Engine.Systems/Time/ITimer.cs +++ b/Engine.Systems/Time/ITimer.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public interface ITimer : IReadOnlyTimer { diff --git a/Engine.Systems/Time/Stopwatch.cs b/Engine.Systems/Time/Stopwatch.cs index 40593f6..90e92f8 100644 --- a/Engine.Systems/Time/Stopwatch.cs +++ b/Engine.Systems/Time/Stopwatch.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public class Stopwatch : Behaviour, IUpdate, IStopwatch { diff --git a/Engine.Systems/Time/TickerStopwatch.cs b/Engine.Systems/Time/TickerStopwatch.cs index d0ad899..c41f5b7 100644 --- a/Engine.Systems/Time/TickerStopwatch.cs +++ b/Engine.Systems/Time/TickerStopwatch.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public class TickerStopwatch : Stopwatch, ITicker { diff --git a/Engine.Systems/Time/TickerTimer.cs b/Engine.Systems/Time/TickerTimer.cs index ec011c4..4e17115 100644 --- a/Engine.Systems/Time/TickerTimer.cs +++ b/Engine.Systems/Time/TickerTimer.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public class TickerTimer : Timer, ITicker { diff --git a/Engine.Systems/Time/Timer.cs b/Engine.Systems/Time/Timer.cs index 2c8faa1..42d2e03 100644 --- a/Engine.Systems/Time/Timer.cs +++ b/Engine.Systems/Time/Timer.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public class Timer : Behaviour, IUpdate, ITimer { diff --git a/Engine.Systems/Time/TimerState.cs b/Engine.Systems/Time/TimerState.cs index 4bda41a..97b7f11 100644 --- a/Engine.Systems/Time/TimerState.cs +++ b/Engine.Systems/Time/TimerState.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Time; +namespace Engine.Systems.Time; public enum TimerState { diff --git a/Engine.Systems/Tween/Easings.cs b/Engine.Systems/Tween/Easings.cs index 5b42480..46a031d 100644 --- a/Engine.Systems/Tween/Easings.cs +++ b/Engine.Systems/Tween/Easings.cs @@ -1,8 +1,8 @@ // Reference: https://easings.net -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; internal static class EaseConstants { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenAABBExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenAABBExtensions.cs index d6c19bd..e0b6304 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenAABBExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenAABBExtensions.cs @@ -1,7 +1,7 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenAABBExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenCamera2DExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenCamera2DExtensions.cs index 1644789..32d923c 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenCamera2DExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenCamera2DExtensions.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenCamera2DExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenCircleExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenCircleExtensions.cs index c92f8fd..959ed38 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenCircleExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenCircleExtensions.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenCircleExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenColorExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenColorExtensions.cs index 03b0e35..ce26271 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenColorExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenColorExtensions.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenColorExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenLine2DEquationExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenLine2DEquationExtensions.cs index bf8d91f..52e2bdc 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenLine2DEquationExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenLine2DEquationExtensions.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenLine2DEquationExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenLine2DExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenLine2DExtensions.cs index eaaed71..e9f5c46 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenLine2DExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenLine2DExtensions.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenLine2DExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenProjection1DExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenProjection1DExtensions.cs index f6755bf..b20ba7b 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenProjection1DExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenProjection1DExtensions.cs @@ -1,7 +1,7 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenProjection1DExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenQuaternionExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenQuaternionExtensions.cs index a0c10fc..5397433 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenQuaternionExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenQuaternionExtensions.cs @@ -1,7 +1,7 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenQuaternionExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenShape2DExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenShape2DExtensions.cs index 00393dd..6c9bb97 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenShape2DExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenShape2DExtensions.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenShape2DExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenTransform2DExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenTransform2DExtensions.cs index f4ca833..c3b3e4b 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenTransform2DExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenTransform2DExtensions.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenTransform2DExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenTriangleExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenTriangleExtensions.cs index d91475e..236b46e 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenTriangleExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenTriangleExtensions.cs @@ -1,7 +1,7 @@ using System; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenTriangleExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenVector2DExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenVector2DExtensions.cs index e230349..1ef0454 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenVector2DExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenVector2DExtensions.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenVector2DExtensions { diff --git a/Engine.Systems/Tween/EngineExtensions/TweenVector3DExtensions.cs b/Engine.Systems/Tween/EngineExtensions/TweenVector3DExtensions.cs index 3ef7026..e4c53fd 100644 --- a/Engine.Systems/Tween/EngineExtensions/TweenVector3DExtensions.cs +++ b/Engine.Systems/Tween/EngineExtensions/TweenVector3DExtensions.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenVector3DExtensions { diff --git a/Engine.Systems/Tween/IEasing.cs b/Engine.Systems/Tween/IEasing.cs index a81331f..acf1502 100644 --- a/Engine.Systems/Tween/IEasing.cs +++ b/Engine.Systems/Tween/IEasing.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public interface IEasing { diff --git a/Engine.Systems/Tween/ITween.cs b/Engine.Systems/Tween/ITween.cs index f4d881b..559d3ad 100644 --- a/Engine.Systems/Tween/ITween.cs +++ b/Engine.Systems/Tween/ITween.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public interface ITween { diff --git a/Engine.Systems/Tween/ITweenManager.cs b/Engine.Systems/Tween/ITweenManager.cs index 2dc52d9..f1739fc 100644 --- a/Engine.Systems/Tween/ITweenManager.cs +++ b/Engine.Systems/Tween/ITweenManager.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public interface ITweenManager { diff --git a/Engine.Systems/Tween/Tween.cs b/Engine.Systems/Tween/Tween.cs index c92aa94..a8afc42 100644 --- a/Engine.Systems/Tween/Tween.cs +++ b/Engine.Systems/Tween/Tween.cs @@ -1,6 +1,6 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; internal class Tween : ITween { diff --git a/Engine.Systems/Tween/TweenExtensions.cs b/Engine.Systems/Tween/TweenExtensions.cs index 4b02cac..e0ffc09 100644 --- a/Engine.Systems/Tween/TweenExtensions.cs +++ b/Engine.Systems/Tween/TweenExtensions.cs @@ -1,6 +1,6 @@ using System; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public static class TweenExtensions { diff --git a/Engine.Systems/Tween/TweenManager.cs b/Engine.Systems/Tween/TweenManager.cs index 4c0b599..53f830d 100644 --- a/Engine.Systems/Tween/TweenManager.cs +++ b/Engine.Systems/Tween/TweenManager.cs @@ -1,9 +1,9 @@ using System.Collections; using System.Collections.Generic; -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public class TweenManager : Behaviour, ITweenManager { diff --git a/Engine.Systems/Tween/TweenState.cs b/Engine.Systems/Tween/TweenState.cs index 166e925..df010c0 100644 --- a/Engine.Systems/Tween/TweenState.cs +++ b/Engine.Systems/Tween/TweenState.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public enum TweenState { diff --git a/Engine.Systems/Tween/Yields/WaitForTweenCompleteCoroutineYield.cs b/Engine.Systems/Tween/Yields/WaitForTweenCompleteCoroutineYield.cs index 0a8c290..b574530 100644 --- a/Engine.Systems/Tween/Yields/WaitForTweenCompleteCoroutineYield.cs +++ b/Engine.Systems/Tween/Yields/WaitForTweenCompleteCoroutineYield.cs @@ -1,5 +1,5 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public class WaitForTweenCompleteCoroutineYield(ITween tween) : CoroutineYield(() => tween.State == TweenState.Completed); diff --git a/Engine.Systems/Tween/Yields/WaitForTweenDoneCoroutineYield.cs b/Engine.Systems/Tween/Yields/WaitForTweenDoneCoroutineYield.cs index b34330b..3ab3d78 100644 --- a/Engine.Systems/Tween/Yields/WaitForTweenDoneCoroutineYield.cs +++ b/Engine.Systems/Tween/Yields/WaitForTweenDoneCoroutineYield.cs @@ -1,5 +1,5 @@ -using Syntriax.Engine.Core; +using Engine.Core; -namespace Syntriax.Engine.Systems.Tween; +namespace Engine.Systems.Tween; public class WaitWhileTweenActiveCoroutineYield(ITween tween) : CoroutineYield(() => tween.State.CheckFlag(TweenState.Completed | TweenState.Cancelled)); diff --git a/Engine/Engine.csproj b/Engine/Engine.csproj index be663c5..c3763fb 100644 --- a/Engine/Engine.csproj +++ b/Engine/Engine.csproj @@ -4,7 +4,8 @@ net9.0 disable enable - Syntriax.Engine + Engine + Engine diff --git a/Engine/Preserver.cs b/Engine/Preserver.cs index a272d7e..f26a7ac 100644 --- a/Engine/Preserver.cs +++ b/Engine/Preserver.cs @@ -1,4 +1,4 @@ -namespace Syntriax.Engine +namespace Engine { // This is pretty much so the assembly gets loaded automatically because // the builds include the assembly but sometimes doesn't link load it at startup.