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,11 +1,10 @@
#pragma once
#include <SDL2/SDL.h>
#include <stdio.h>
#include <string>
#ifndef TEXTURE_H
#define TEXTURE_H
#include <SDL2/SDL_blendmode.h> // for SDL_BlendMode
#include <SDL2/SDL_rect.h> // for SDL_Point, SDL_Rect
#include <SDL2/SDL_render.h> // for SDL_Renderer, SDL_FLIP_NONE, SDL_TEX...
#include <SDL2/SDL_stdinc.h> // for Uint8
#include <string> // for basic_string, string
class Texture
{
@@ -61,6 +60,4 @@ public:
// Obtiene la textura
SDL_Texture *getSDLTexture();
};
#endif
};