refactor: image and obj data loading

This commit is contained in:
Jan
2024-09-24 12:01:42 +01:00
parent 5fee875495
commit 5cc52c42cd
97 changed files with 1784 additions and 1878 deletions

View File

@ -29,8 +29,6 @@ template<typename ContainerType, typename ReferencerType> class ObjContainerRepo
ObjContainerEntry& operator=(ObjContainerEntry&& other) noexcept = default;
};
std::vector<ObjContainerEntry> m_containers;
public:
ObjContainerRepository() = default;
~ObjContainerRepository() = default;
@ -120,4 +118,7 @@ public:
return entry.m_container.get();
});
}
private:
std::vector<ObjContainerEntry> m_containers;
};