afegida carpeta "external" al source i moguts ahi els .cpp que no son meus

This commit is contained in:
2025-06-21 12:14:23 +02:00
parent ee43f1cf56
commit 97f76e122d
23 changed files with 104 additions and 34 deletions

11
source/external/jail_shader.h vendored Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#include <SDL3/SDL_render.h> // Para SDL_Texture
#include <SDL3/SDL_video.h> // Para SDL_Window
#include <string>
namespace shader
{
bool init(SDL_Window *ventana, SDL_Texture *texturaBackBuffer, const std::string &vertexShader, const std::string &fragmentShader = "");
void render();
}