7 lines
173 B
C#
7 lines
173 B
C#
namespace Engine.Core;
|
|
|
|
/// <summary>
|
|
/// Represents a basic entity in the engine.
|
|
/// </summary>
|
|
public interface IEntity : IInitializable, IIdentifiable, IHasStateEnable;
|