aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/System.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/system/System.h')
-rw-r--r--src/crepe/system/System.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/crepe/system/System.h b/src/crepe/system/System.h
index ec4507f..28ea20e 100644
--- a/src/crepe/system/System.h
+++ b/src/crepe/system/System.h
@@ -2,6 +2,8 @@
namespace crepe {
+class ComponentManager;
+
/**
* \brief Base ECS system class
*
@@ -17,8 +19,11 @@ public:
virtual void update() = 0;
public:
- System() = default;
+ System(ComponentManager &);
virtual ~System() = default;
+
+protected:
+ ComponentManager & component_manager;
};
} // namespace crepe