aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ComponentManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/ComponentManager.cpp')
-rw-r--r--src/crepe/ComponentManager.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/crepe/ComponentManager.cpp b/src/crepe/ComponentManager.cpp
deleted file mode 100644
index 9a3fec7..0000000
--- a/src/crepe/ComponentManager.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#include "ComponentManager.h"
-
-using namespace crepe;
-
-ComponentManager & ComponentManager::get_instance() {
- static ComponentManager instance;
- return instance;
-}
-
-void ComponentManager::delete_all_components_of_id(uint32_t id) {
- // Loop through all the types (in the unordered_map<>)
- for (auto & [type, componentArray] : components) {
- // Make sure that the id (that we are looking for) is within the boundaries of the vector<>
- if (id < componentArray.size()) {
- // Clear the components at this specific id
- componentArray[id].clear();
- }
- }
-}
-
-void ComponentManager::delete_all_components() {
- // Clear the whole unordered_map<>
- components.clear();
-}