2023-11-23 22:07:49 +03:00
|
|
|
namespace Syntriax.Engine.Core.Abstract;
|
|
|
|
|
2024-02-01 12:14:53 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Represents a basic entity in the engine.
|
|
|
|
/// </summary>
|
2023-11-24 17:04:19 +03:00
|
|
|
public interface IEntity : IInitialize, IAssignableStateEnable
|
2023-11-23 22:07:49 +03:00
|
|
|
{
|
|
|
|
}
|