ctaza/entity.cpp

10 lines
146 B
C++

#include "entity.hpp"
Entity::~Entity()
{
fprintf(stderr, "ENTITY: deleting mesh!\n");
if (mesh.mesh) {
free(mesh.mesh);
}
}