Port of Ash Entity system into D
The default class for managing a NodeList. This class creates the NodeList and adds and removes nodes to/from the list as the entities and the components in the engine change.
The Engine class is the central point for creating and managing your game state. Add entities and systems to the engine, and fetch families of nodes from the engine.
Port of Ash Entity system into D
An internal class for a linked list of entities. Used inside the framework for managing the entities.
The interface for classes that are used to manage NodeLists (set as the familyClass property in the Engine object). Most developers don't need to use this since the default implementation is used by default and suits most needs.
The base class for a node.
A collection of nodes.
This internal class maintains a pool of deleted nodes for reuse by the framework. This reduces the overhead from object creation and garbage collection.
The base class for a system.
Used internally, this is an ordered list of Systems for use by the engine update loop.