terravisor/include/load_texture.h

10 lines
165 B
C++

#ifndef LOAD_TEXTURE_H_
#define LOAD_TEXTURE_H_
#include <GL/glew.h>
namespace Texture {
GLuint LoadTexture(const char* filePath);
}
#endif // LOAD_TEXTURE_H_