mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-01 16:32:31 +01:00
4fd92a1549
Also move up source files into the root directory, as there's nothing else in this directory
13 lines
250 B
C++
13 lines
250 B
C++
#ifndef _LIBRW_TEXTURELOADER_HPP_
|
|
#define _LIBRW_TEXTURELOADER_HPP_
|
|
|
|
#include <gl/TextureData.hpp>
|
|
#include <rw/forward.hpp>
|
|
|
|
class TextureLoader {
|
|
public:
|
|
bool loadFromMemory(const FileContentsInfo& file, TextureArchive& inTextures);
|
|
};
|
|
|
|
#endif
|