aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'yage/entity/engine.h')
-rw-r--r--yage/entity/engine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/yage/entity/engine.h b/yage/entity/engine.h
index 9a1f6d2b..6719eeaf 100644
--- a/yage/entity/engine.h
+++ b/yage/entity/engine.h
@@ -32,16 +32,16 @@ public:
~Engine();
/// Initialize window and other aspects of the engine.
- void init();
+ Engine &init();
/// Main game loop of the engine.
- void mainLoop();
+ Engine &mainLoop();
/// Updates the systems.
void update();
/// Add spaces to the engine
- void addSpace(std::unique_ptr<Space> space);
+ Engine &addSpace(std::unique_ptr<Space> space);
/// Returns the instance of the engine, as there is only one instance of the
/// engine.