mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 15:49:55 +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>
17 lines
289 B
C++
17 lines
289 B
C++
#include "omwloader.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
|
|
OmwLoader::OmwLoader(Loading::Listener& listener)
|
|
: ContentLoader(listener)
|
|
{
|
|
}
|
|
|
|
void OmwLoader::load(const boost::filesystem::path& filepath, int& index)
|
|
{
|
|
ContentLoader::load(filepath.filename(), index);
|
|
}
|
|
|
|
} /* namespace MWWorld */
|
|
|