#pragma once #include "config.hpp" #include #include #include struct PhoenixTexture { SDL_Texture *texture; }; PhoenixTexture PLoadTexture(std::string filePath); void PRenderTexture(PhoenixTexture *texture, int x, int y); void PDestroyTexture(PhoenixTexture *texture);