Arreglos y limpieza de código

This commit is contained in:
2022-10-19 09:53:23 +02:00
parent b07baa4669
commit 4f1a596e46
37 changed files with 159 additions and 170 deletions

View File

@@ -12,7 +12,7 @@
class SmartSprite : public AnimatedSprite
{
private:
// VAriables
// Variables
bool enabled; // Indica si esta habilitado
bool onDestination; // Indica si está en el destino
int destX; // Posicion de destino en el eje X
@@ -28,10 +28,7 @@ private:
public:
// Constructor
SmartSprite(LTexture *texture, SDL_Renderer *renderer);
// Destructor
~SmartSprite();
SmartSprite(Texture *texture, SDL_Renderer *renderer);
// Inicializa el objeto
void init();