aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/space.h
diff options
context:
space:
mode:
Diffstat (limited to 'yage/entity/space.h')
-rw-r--r--yage/entity/space.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/yage/entity/space.h b/yage/entity/space.h
index 969ef503..113110aa 100644
--- a/yage/entity/space.h
+++ b/yage/entity/space.h
@@ -42,7 +42,12 @@ public:
* visible to the user, as the user only needs to worry about the
* handle when referring to the Entity and changing it.
*/
- unsigned createEntity();
+ Entity createEntity();
+
+ /**
+ * Update all the systems.
+ */
+ void update();
private:
/**
@@ -58,6 +63,11 @@ private:
* current space.
*/
EntityManager em_;
+
+ /**
+ * Manages all the components
+ */
+ // ComponentManager cm_;
};
} // namespace yage