clang-format
This commit is contained in:
2025-07-23 20:55:50 +02:00
parent d33c1f5dc5
commit ec008ef5dd
61 changed files with 308 additions and 253 deletions

View File

@@ -20,13 +20,11 @@
// Clase Intro
class Intro {
public:
// Constructor
// --- Constructor y destructor ---
Intro();
// Destructor
~Intro() = default;
// Bucle principal
// --- Bucle principal ---
void run();
private:
@@ -72,8 +70,8 @@ class Intro {
void updatePostState(); // Actualiza el estado POST
#ifdef _DEBUG
static void adjustColorComponent(uint8_t& component, bool increase);
void adjustAllColorComponents(Color& color, bool increase);
void handleDebugColorKeys(SDL_Keycode key, Color& color);
static void adjustAllColorComponents(Color& color, bool increase);
static void handleDebugColorKeys(SDL_Keycode key, Color& color);
static void printColorDebugInfo(const Color& color);
#endif