diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-12-19 00:01:17 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-12-22 12:47:40 +0100 |
| commit | c736e13c7dd04bfa6c0580a4db3d6501dc28eed1 (patch) | |
| tree | 04d1b490f710b0ed956e8f43d620ed6f846b8cf2 /src/irrlicht/RezLoader.h | |
| parent | e2f9ee3f8cd319e952e4f5d5ec466f0ea9e6e77f (diff) | |
| download | globalops-irrlicht.tar.gz | |
Irrlichtirrlicht
Diffstat (limited to 'src/irrlicht/RezLoader.h')
| -rw-r--r-- | src/irrlicht/RezLoader.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/irrlicht/RezLoader.h b/src/irrlicht/RezLoader.h new file mode 100644 index 0000000..85a614d --- /dev/null +++ b/src/irrlicht/RezLoader.h @@ -0,0 +1,19 @@ +#ifndef REZLOADER_H +#define REZLOADER_H + +#include <irrlicht.h> + +class RezLoader : public irr::io::IArchiveLoader +{ +public: + virtual bool isALoadableFileFormat(const irr::io::path &filename) const; + virtual bool isALoadableFileFormat(irr::io::IReadFile *file) const; + virtual bool isALoadableFileFormat(irr::io::E_FILE_ARCHIVE_TYPE fileType) + const; + virtual irr::io::IFileArchive *createArchive(const irr::io::path &filename, + bool ignoreCase, bool ignorePaths) const; + virtual irr::io::IFileArchive *createArchive(irr::io::IReadFile *file, + bool ignoreCase, bool ignorePaths) const; +}; + +#endif |
