Toquetechant includes

This commit is contained in:
2025-02-20 13:34:18 +01:00
parent bcb2e96069
commit e1d6aff724
65 changed files with 615 additions and 495 deletions

View File

@@ -1,21 +1,18 @@
#pragma once
#include <SDL2/SDL.h>
#include "asset.h"
#include "input.h"
#include "jail_audio.h"
#include "resource.h"
#include "screen.h"
#include "sprite.h"
#include "utils.h"
#include "const.h"
#include <vector>
#include <string>
#include "text.h"
#ifndef LOADING_SCREEN_H
#define LOADING_SCREEN_H
#include <SDL2/SDL_events.h> // for SDL_Event
#include <SDL2/SDL_rect.h> // for SDL_Rect
#include <SDL2/SDL_render.h> // for SDL_Renderer
#include <SDL2/SDL_stdinc.h> // for Uint32
class Asset;
class Input;
class Resource;
class Screen;
class Sprite;
class Texture;
struct JA_Music_t;
struct options_t;
struct section_t;
class LoadingScreen
{
@@ -86,6 +83,4 @@ public:
// Bucle principal
void run();
};
#endif
};