Syntriax.Engine/Engine.Core/Abstract/IEntity.cs

9 lines
183 B
C#
Raw Normal View History

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>
public interface IEntity : IInitialize, IAssignableStateEnable
2023-11-23 22:07:49 +03:00
{
}