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,14 +1,14 @@
#pragma once
#include <SDL2/SDL.h>
#include "asset.h"
#include "notify.h"
#include "utils.h"
#include "const.h"
#include <vector>
#ifndef SCREEN_H
#define SCREEN_H
#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_video.h> // for SDL_Window
#include <string> // for basic_string, string
#include <vector> // for vector
#include "utils.h" // for color_t
class Asset;
class Notify;
#define FILTER_NEAREST 0
#define FILTER_LINEAL 1
@@ -151,6 +151,4 @@ public:
// Cambia el estado de los shaders
void toggleShaders();
};
#endif
};