BREAKING CHANGE: renamed namespace & assembly names

This commit is contained in:
2025-08-05 19:41:35 +03:00
parent 1644a751bb
commit 3d183b21cd
259 changed files with 411 additions and 405 deletions

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
/// <summary>
/// Represents a <see cref="IBehaviour"/> to be notified when the draw phase of the <see cref="IUniverse"/> occurs.

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
public interface IEnterUniverse : IBehaviour
{

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
public interface IExitUniverse : IBehaviour
{

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
public interface IFirstFrameUpdate : IBehaviour
{

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
public interface ILastFrameUpdate : IBehaviour
{

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
/// <summary>
/// Represents a <see cref="IBehaviour"/> to be notified after the draw phase of the <see cref="IUniverse"/> occurs.

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
/// <summary>
/// Represents a <see cref="IBehaviour"/> to be notified after the update phase of the <see cref="IUniverse"/> occurs.

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
/// <summary>
/// Represents a <see cref="IBehaviour"/> to be notified before the draw phase of the <see cref="IUniverse"/> occurs.

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
/// <summary>
/// Represents a <see cref="IBehaviour"/> to be notified before the update phase of the <see cref="IUniverse"/> occurs.

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Core;
namespace Engine.Core;
/// <summary>
/// Represents a <see cref="IBehaviour"/> to be notified when the update phase of the <see cref="IUniverse"/> occurs.

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace Syntriax.Engine.Core;
namespace Engine.Core;
public class DrawManager : Behaviour
{

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace Syntriax.Engine.Core;
namespace Engine.Core;
public class UniverseEntranceManager : Behaviour
{

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace Syntriax.Engine.Core;
namespace Engine.Core;
public class UpdateManager : Behaviour
{