This commit is contained in:
2025-10-27 11:53:12 +01:00
parent 231dcd4b3b
commit 5d8811026d
69 changed files with 899 additions and 888 deletions

View File

@@ -9,7 +9,7 @@
class Debug {
private:
// [SINGLETON] Objeto privado
static Debug* debug_;
static Debug* debug;
// Variables
std::vector<std::string> slot_; // Vector con los textos a escribir
@@ -41,7 +41,7 @@ class Debug {
void setPos(SDL_FPoint p);
// Getters
bool getEnabled() { return enabled_; }
bool getEnabled() const { return enabled_; }
// Setters
void add(std::string text) { slot_.push_back(text); }