OpenMiner/include/resource/TextureLoader.hpp
Quentin Bazin fb3f7f0501 Lot of changes. [...]
[Renderer] Deleted, code moved to Application.
[Transformable] Transformations are now applied to model matrix in applyTransform.
[ResourceHandler|TextureLoader|XMLFile] Added.
[Debug|Exception] Updated.
2018-06-21 05:45:17 +02:00

25 lines
595 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 "IResourceLoader.hpp"
class TextureLoader : public IResourceLoader {
public:
void load(const char *xmlFilename, ResourceHandler &handler);
};
#endif // TEXTURELOADER_HPP_