feat: add texture folder and remove old files

This commit is contained in:
2025-11-15 21:13:48 +01:00
parent cb103f4d90
commit a7583c37f4
8 changed files with 10 additions and 158 deletions

View File

@@ -5,7 +5,7 @@ namespace fs = std::filesystem;
Texture::Texture(const std::string& filename)
{
fs::path path = fs::absolute(fs::current_path() / "res/textures" / filename);
fs::path path = fs::absolute(fs::current_path() / "res" / filename);
int maxTextureSize;
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize);