aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-04-30 23:04:17 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-04-30 23:04:17 +0100
commitb9db19ca3f12932b1968a99c2213886167efed81 (patch)
treec64647f03a25e033a3e7ebda2d7ef31ee302c627
parentf338b4d15b57770d922e187b7a57d25fbf379b62 (diff)
parentc44456496fe13800e36b8bf257eb2bd5d94faa30 (diff)
downloadYAGE-b9db19ca3f12932b1968a99c2213886167efed81.tar.gz
YAGE-b9db19ca3f12932b1968a99c2213886167efed81.zip
Merge branch 'master' of github.com:ymherklotz/YAGE
-rw-r--r--yage/entity/space.h1
-rw-r--r--yage/entity/system.h20
2 files changed, 2 insertions, 19 deletions
diff --git a/yage/entity/space.h b/yage/entity/space.h
index 2bee7da5..969ef503 100644
--- a/yage/entity/space.h
+++ b/yage/entity/space.h
@@ -13,6 +13,7 @@
#include <memory>
#include "entitymanager.h"
+#include "system.h"
namespace yage
{
diff --git a/yage/entity/system.h b/yage/entity/system.h
index 47d176c9..15845390 100644
--- a/yage/entity/system.h
+++ b/yage/entity/system.h
@@ -16,27 +16,9 @@
namespace yage
{
-class BaseSystem : public yage::NonCopyable
+class System : public NonCopyable
{
public:
- typedef std::size_t Identifier;
-
- virtual void update() = 0;
-
-protected:
- Identifier id_;
-};
-
-/**
- * System interface for the different systems in the engine.
- */
-template <typename Derived>
-class System : public BaseSystem
-{
-public:
-};
-
-class SystemManager : public yage::NonCopyable {
};