25 lines
615 B
C++
25 lines
615 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: TextureLoader.hpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Created: 09/04/2018 01:37:23
|
|
*
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#ifndef TEXTURELOADER_HPP_
|
|
#define TEXTURELOADER_HPP_
|
|
|
|
#include <gk/resource/IResourceLoader.hpp>
|
|
|
|
class TextureLoader : public gk::IResourceLoader {
|
|
public:
|
|
void load(const char *xmlFilename, gk::ResourceHandler &handler);
|
|
};
|
|
|
|
#endif // TEXTURELOADER_HPP_
|