aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'yage/entity/system.h')
-rw-r--r--yage/entity/system.h20
1 files changed, 1 insertions, 19 deletions
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 {
};