Move FreeImage.h include from header to main file

Test couldn't find FreeImage functions so I'm trying moving it
This commit is contained in:
Jack 2024-08-23 21:56:12 -04:00
parent d12a32f162
commit 3f923e5a2f
2 changed files with 1 additions and 2 deletions

View File

@ -1,8 +1,6 @@
#ifndef LOAD_TEXTURE_H_
#define LOAD_TEXTURE_H_
#include <FreeImage.h>
namespace Texture {
void LoadTexture(const char* filePath);
}

View File

@ -1,6 +1,7 @@
#include "load_texture.h"
#include <iostream>
#include <FreeImage.h>
namespace Texture {
void LoadTexture(const char* filePath) {