mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-05 15:55:45 +00:00
9c2145eda1
Merged master/plugin switches into content in openmw and mwiniimporter. Extension in content files is now required. Signed-off-by: Lukasz Gromanowski <lgromanowski@gmail.com>
35 lines
650 B
C++
35 lines
650 B
C++
#ifndef ESMLOADER_HPP
|
|
#define ESMLOADER_HPP
|
|
|
|
#include <vector>
|
|
|
|
#include "contentloader.hpp"
|
|
#include "components/esm/esmreader.hpp"
|
|
|
|
namespace ToUTF8
|
|
{
|
|
class Utf8Encoder;
|
|
}
|
|
|
|
namespace MWWorld
|
|
{
|
|
|
|
class ESMStore;
|
|
|
|
struct EsmLoader : public ContentLoader
|
|
{
|
|
EsmLoader(MWWorld::ESMStore& store, std::vector<ESM::ESMReader>& readers,
|
|
ToUTF8::Utf8Encoder* encoder, Loading::Listener& listener);
|
|
|
|
void load(const boost::filesystem::path& filepath, int& index);
|
|
|
|
private:
|
|
std::vector<ESM::ESMReader>& mEsm;
|
|
MWWorld::ESMStore& mStore;
|
|
ToUTF8::Utf8Encoder* mEncoder;
|
|
};
|
|
|
|
} /* namespace MWWorld */
|
|
|
|
#endif // ESMLOADER_HPP
|