Added destructor

This commit is contained in:
Robert 2021-01-21 01:21:14 +01:00
parent 87b27eae70
commit 4ebb7492df
2 changed files with 7 additions and 1 deletions

View file

@ -19,6 +19,7 @@ namespace oglu
{
public:
AbstractObject(const AbstractObject& other);
~AbstractObject();
friend std::shared_ptr<AbstractObject> OGLU_API MakeObject(const GLfloat* vertices, size_t verticesSize, const GLuint* indices, size_t indicesSize, const VertexAttribute* topology, size_t topologySize);