mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
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 */
|