Pasaeta de linters

This commit is contained in:
2025-08-06 13:05:04 +02:00
parent 8ed2dbcd4f
commit 1224af2a9b
40 changed files with 623 additions and 592 deletions

View File

@@ -2,10 +2,10 @@
#include <SDL3/SDL.h> // Para SDL_LogInfo, SDL_LogCategory
#include "input.h"
#include "mouse.h" // Para handleEvent
#include "screen.h"
#include "section.hpp" // Para Name, Options, name, options
#include "input.h"
namespace GlobalEvents {
// Comprueba los eventos que se pueden producir en cualquier sección del juego
@@ -30,8 +30,8 @@ void check(const SDL_Event &event) {
}
Mouse::handleEvent(event);
static auto input = Input::get();
input->handleEvent(event);
static auto *input_ = Input::get();
input_->handleEvent(event);
}
} // namespace GlobalEvents