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

@@ -6,8 +6,6 @@
// Constructor
Notify::Notify(SDL_Renderer *renderer, string iconFile, string bitmapFile, string textFile, string soundFile, options_t *options)
{
//std::cout << "Construido Notify" << std::endl;
// Inicializa variables
this->renderer = renderer;
this->options = options;
@@ -23,8 +21,6 @@ Notify::Notify(SDL_Renderer *renderer, string iconFile, string bitmapFile, strin
// Destructor
Notify::~Notify()
{
//std::cout << "Destruido Notify" << std::endl;
// Libera la memoria de los objetos
if (iconTexture != nullptr)
{