feat: make mesh objects shareable

This commit is contained in:
2025-10-16 14:03:24 +02:00
parent 4757ba8e58
commit 6972ca3cb5

View File

@ -5,7 +5,7 @@
#include "renderer/wavefront.h"
struct mesh {
std::unique_ptr<Object> object;
std::shared_ptr<Object> object;
};
#endif // COMPONENTS_MESH_H_