1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-10-05 00:27:30 +02:00
openrw/rwlib/source/loaders/LoaderTXD.hpp
Anonymous Maarten 90acef28f7 rwlib: iwyu: reduce warnings
- use mapping file
- forward define FileContentsInfo, CutsceneTracks, GameTexts
- no more "#pragma once"
- add mapping file
2018-01-08 22:52:48 +00:00

13 lines
237 B
C++

#ifndef _LIBRW_TEXTURELOADER_HPP_
#define _LIBRW_TEXTURELOADER_HPP_
#include <gl/TextureData.hpp>
#include <rw/forward.hpp>
class TextureLoader {
public:
bool loadFromMemory(FileHandle file, TextureArchive& inTextures);
};
#endif