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,13 @@
#pragma once
#include <SDL2/SDL.h>
#include "const.h"
#include "asset.h"
#include "screen.h"
#include "text.h"
#include "texture.h"
#include "utils.h"
#include <string>
#include <vector>
#ifndef DEBUG_H
#define DEBUG_H
#include <SDL2/SDL_rect.h> // for SDL_Point
#include <SDL2/SDL_render.h> // for SDL_Renderer
#include <string> // for string
#include <vector> // for vector
class Asset;
class Screen;
class Text;
class Texture;
// Clase Debug
class Debug
@@ -68,5 +64,3 @@ public:
// Cambia el valor de la variable
void switchEnabled();
};
#endif