fb3f7f0501
[Renderer] Deleted, code moved to Application. [Transformable] Transformations are now applied to model matrix in applyTransform. [ResourceHandler|TextureLoader|XMLFile] Added. [Debug|Exception] Updated.
30 lines
644 B
C++
30 lines
644 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: IResourceLoader.hpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Created: 17/01/2018 19:31:24
|
|
*
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#ifndef IRESOURCELOADER_HPP_
|
|
#define IRESOURCELOADER_HPP_
|
|
|
|
#include <string>
|
|
|
|
class ResourceHandler;
|
|
|
|
class IResourceLoader {
|
|
public:
|
|
virtual ~IResourceLoader() = default;
|
|
|
|
virtual void load(const char *xmlFilename, ResourceHandler &handler) = 0;
|
|
};
|
|
|
|
#endif // RESOURCELOADER_HPP_
|
|
|