aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/engine.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-02-13 20:06:32 +0000
committerGitHub <noreply@github.com>2018-02-13 20:06:32 +0000
commitd273045983524f1ccd51859f28869a3ad6febf32 (patch)
treee8b523f39bc85f6f32d1881b3843d21157d526f2 /yage/entity/engine.h
parent2fe3434682aae38bb0ab414135c2311110a6db90 (diff)
parent2ff28e1127a82610d9402c90f7a2d1c1c7a19b6f (diff)
downloadYAGE-d273045983524f1ccd51859f28869a3ad6febf32.tar.gz
YAGE-d273045983524f1ccd51859f28869a3ad6febf32.zip
Merge pull request #16 from ymherklotz/entity
[entity] Fixing builds too
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_;
};