Eliminados los comentarios de creación y destrucción de objetos

This commit is contained in:
2023-05-23 17:41:35 +02:00
parent c31bfc6cae
commit ae6477c2ea
7 changed files with 0 additions and 20 deletions

View File

@@ -7,7 +7,6 @@
// Constructor
Texture::Texture(SDL_Renderer *renderer, string path, bool verbose)
{
//cout << "Construido Texture" << endl;
// Copia punteros
this->renderer = renderer;
this->path = path;
@@ -27,8 +26,6 @@ Texture::Texture(SDL_Renderer *renderer, string path, bool verbose)
// Destructor
Texture::~Texture()
{
//cout << "Destruido Texture" << endl;
// Libera memoria
unload();
}