BREAKING CHANGE: IEntities are now IInitialize

This commit is contained in:
2023-11-24 17:04:19 +03:00
parent 5a01b01215
commit 251bd948ab
4 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
namespace Syntriax.Engine.Core.Abstract;
public interface IEntity : IAssignableStateEnable
public interface IEntity : IInitialize, IAssignableStateEnable
{
}