Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.
Lusito edited this page Oct 30, 2016 · 2 revisions

The Engine class is the center of the framework. Typically, you would have only one instance per application.

The engine contains manages all entities, components and systems.

Creating an engine

You can create an engine with the default constructor:

Engine engine;

You will learn more about the operations you can do with Engine in the following tutorials.