Afegida barra de progres en la càrrega de recursos

This commit is contained in:
2025-02-26 10:05:52 +01:00
parent 64880a427e
commit 2457517f2b
4 changed files with 175 additions and 26 deletions

View File

@@ -1,12 +1,12 @@
#pragma once
#include <SDL2/SDL_blendmode.h> // for SDL_BlendMode
#include <SDL2/SDL_rect.h> // for SDL_Rect
#include <SDL2/SDL_render.h> // for SDL_Renderer, SDL_Texture
#include <SDL2/SDL_stdinc.h> // for Uint32
#include <SDL2/SDL_video.h> // for SDL_Window
#include <vector> // for vector
#include "utils.h" // for Color
#include <SDL2/SDL_blendmode.h> // for SDL_BlendMode
#include <SDL2/SDL_rect.h> // for SDL_Rect
#include <SDL2/SDL_render.h> // for SDL_Renderer, SDL_Texture
#include <SDL2/SDL_stdinc.h> // for Uint32
#include <SDL2/SDL_video.h> // for SDL_Window
#include <vector> // for vector
#include "utils.h" // for Color
// Tipos de filtro
enum class ScreenFilter : Uint32
@@ -100,6 +100,7 @@ public:
// Vuelca el contenido del renderizador en pantalla
void render();
void renderWithoutNotifier();
// Actualiza la lógica de la clase
void update();