From 2ff28e1127a82610d9402c90f7a2d1c1c7a19b6f Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 13 Feb 2018 20:03:16 +0000 Subject: [entity] Fixing builds too --- yage/entity/engine.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'yage/entity/engine.h') 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 systems_; - /// Window Window window_; }; -- cgit