This commit is contained in:
2025-03-30 22:48:08 +02:00
parent a61f24e08c
commit 3b8bb88fbb
16 changed files with 93 additions and 50 deletions

View File

@@ -44,6 +44,10 @@ public:
}
content.insert({element.name, element});
}
void add(SystemElementContainer<T> elements)
{
add(elements.content);
}
void add(std::vector<T> elements)
{
for (auto &element : elements)