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,17 +1,14 @@
#pragma once
#include <SDL2/SDL.h>
#include "animatedsprite.h"
#include "asset.h"
#include "room.h"
#include "text.h"
#include "texture.h"
#include "utils.h"
#include <string>
#include <vector>
#ifndef RESOURCE_H
#define RESOURCE_H
#include <SDL2/SDL_render.h> // for SDL_Renderer
#include <string> // for string, basic_string
#include <vector> // for vector
class Asset;
class Texture;
struct animatedSprite_t;
struct options_t;
struct room_t;
struct textFile_t;
struct res_texture_t
{
@@ -131,6 +128,4 @@ public:
// Obtiene todas las habitaciones
std::vector<res_room_t> *getAllRooms();
};
#endif
};