19 lines
359 B
C++
19 lines
359 B
C++
|
|
#ifndef TEXTURELOADER_H
|
|
#define TEXTURELOADER_H TEXTURELOADER_H
|
|
|
|
#include <string>
|
|
#include <GL/gl.h>
|
|
#include "FileLoader/FileLoader.h"
|
|
|
|
class TextureLoader
|
|
{
|
|
public:
|
|
virtual GLuint loadTexture(
|
|
const std::string & fullPath,
|
|
const std::string & shortPath,
|
|
FileLoader & fileLoader) = 0;
|
|
};
|
|
|
|
#endif
|