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>
22 lines
370 B
C++
22 lines
370 B
C++
#ifndef OMWLOADER_HPP
|
|
#define OMWLOADER_HPP
|
|
|
|
#include "contentloader.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
|
|
/**
|
|
* @brief Placeholder for real OpenMW content loader
|
|
*/
|
|
struct OmwLoader : public ContentLoader
|
|
{
|
|
OmwLoader(Loading::Listener& listener);
|
|
|
|
void load(const boost::filesystem::path& filepath, int& index);
|
|
};
|
|
|
|
} /* namespace MWWorld */
|
|
|
|
#endif /* OMWLOADER_HPP */
|