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

@@ -5,7 +5,6 @@
// Constructor
MovingSprite::MovingSprite(float x, float y, int w, int h, float velx, float vely, float accelx, float accely, Texture *texture, SDL_Renderer *renderer)
{
//std::cout << "Construido MovingSprite" << std::endl;
// Copia los punteros
this->texture = texture;
this->renderer = renderer;
@@ -58,7 +57,6 @@ MovingSprite::MovingSprite(float x, float y, int w, int h, float velx, float vel
// Destructor
MovingSprite::~MovingSprite()
{
//std::cout << "Destruido MovingSprite" << std::endl;
}
// Reinicia todas las variables