Table of Contents

Interface IEntity<TEntity>

Namespace
MonkeyLoader.Components
Assembly
MonkeyLoader.dll

Defines the interface for entities that IComponent<TEntity> instances belong to.

public interface IEntity<TEntity> : IEnumerable<IComponent<TEntity>>, IEnumerable where TEntity : class, IEntity<TEntity>

Type Parameters

TEntity

The type of the entity.

Inherited Members
Extension Methods

Properties

Components

Gets this entity's component list.

IComponentList<TEntity> Components { get; }

Property Value

IComponentList<TEntity>

Self

Gets the entity itself.

TEntity Self { get; }

Property Value

TEntity

Remarks

This allows methods that take in an entity to access the main TEntity value from the entity, without having to deal with potential ambiguities by taking it in directly.