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,19 @@
#pragma once
#include <SDL2/SDL.h>
#include "animatedsprite.h"
#include "asset.h"
#include "input.h"
#include "jail_audio.h"
#include "resource.h"
#include "screen.h"
#include "sprite.h"
#include "text.h"
#include "texture.h"
#include "utils.h"
#include "const.h"
#include <vector>
#include <string>
#ifndef ENDING2_H
#define ENDING2_H
#include <SDL2/SDL_events.h> // for SDL_Event
#include <SDL2/SDL_render.h> // for SDL_Renderer
#include <SDL2/SDL_stdinc.h> // for Uint32
#include <string> // for string
#include <vector> // for vector
#include "utils.h" // for color_t
class AnimatedSprite;
class Asset;
class Input;
class MovingSprite;
class Resource;
class Screen;
class Text;
struct JA_Music_t;
class Ending2
{
@@ -128,5 +126,3 @@ public:
// Bucle principal
void run();
};
#endif