Eliminados los comentarios de creación y destrucción de objetos
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user