9 lines
183 B
C#
9 lines
183 B
C#
namespace Syntriax.Engine.Core.Abstract;
|
|
|
|
/// <summary>
|
|
/// Represents a basic entity in the engine.
|
|
/// </summary>
|
|
public interface IEntity : IInitialize, IAssignableStateEnable
|
|
{
|
|
}
|