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, 0 insertions, 6 deletions
diff --git a/yage/entity/engine.h b/yage/entity/engine.h
index 147769e5..6e1bf49a 100644
--- a/yage/entity/engine.h
+++ b/yage/entity/engine.h
@@ -31,17 +31,11 @@ public:
/// Updates the systems.
void update();
- /// Adds a system to the engine.
- void addSystem(System *system);
-
/// Returns the instance of the engine, as there is only one instance of the
/// engine.
static Engine &instance();
private:
- /// Vector of all the systems in the engine.
- std::vector<System *> systems_;
-
/// Window
Window window_;
};