neteja tidy a source/core i encamina Texture::loadFromFile pel ResourceHelper

This commit is contained in:
2026-05-14 20:22:54 +02:00
parent 88fa3f296f
commit 1912200b21
40 changed files with 699 additions and 578 deletions
+5 -5
View File
@@ -35,7 +35,7 @@ class SmartSprite : public AnimatedSprite {
void render() override;
// Obtiene el valor de la variable
int getEnabledCounter();
[[nodiscard]] auto getEnabledCounter() const -> int;
// Establece el valor de la variable
void setEnabledCounter(int value);
@@ -47,14 +47,14 @@ class SmartSprite : public AnimatedSprite {
void setDestY(int y);
// Obtiene el valor de la variable
int getDestX();
[[nodiscard]] auto getDestX() const -> int;
// Obtiene el valor de la variable
int getDestY();
[[nodiscard]] auto getDestY() const -> int;
// Obtiene el valor de la variable
bool isOnDestination();
[[nodiscard]] auto isOnDestination() const -> bool;
// Obtiene el valor de la variable
bool hasFinished();
[[nodiscard]] auto hasFinished() const -> bool;
};