aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/space.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'yage/entity/space.cpp')
-rw-r--r--yage/entity/space.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/yage/entity/space.cpp b/yage/entity/space.cpp
deleted file mode 100644
index 530f5b49..00000000
--- a/yage/entity/space.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-/** ---------------------------------------------------------------------------
- * -*- c++ -*-
- * @file: space.cpp
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-#include "space.h"
-
-namespace yage
-{
-
-Space::Space() : em_(this) {}
-
-unsigned Space::createEntity()
-{
- return em_.createEntity();
-}
-
-void Space::update()
-{
- for (auto &system : systems_) {
- system->update();
- }
-}
-
-} // namespace yage