mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-24 13:47:52 -05:00
refactor: image and obj data loading
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
Reference in New Issue
Block a user