Cogs.Core
EngineSystems.h
1#pragma once
2
3namespace Cogs
4{
5 namespace Core
6 {
7 class Context;
8 class Engine;
9
11 {
12 static void initialize(Context * context, Engine * engine);
13 };
14 }
15}
A Context instance contains all the services, systems and runtime components needed to use Cogs.
Definition: Context.h:83
The engine owns all the systems and resource managers, and is responsible for executing different sta...
Definition: Engine.h:88
Contains all Cogs related functionality.
Definition: FieldSetter.h:23