dir structure changed

This commit is contained in:
2025-03-30 18:04:53 +02:00
parent c123001f79
commit d35d9ced2f
15 changed files with 0 additions and 0 deletions

9
src/system/parts.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "parts.hpp"
Part::Part(std::string name) : SystemElement(name) {
};
Parts::Parts(void): SystemElementContainer<Part>("parts") {}
Parts::Parts(std::vector<Part> parts): SystemElementContainer<Part>("parts", parts) {}