1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-03 13:11:35 +00:00
openmw/apps/openmw/mwworld/contentloader.hpp

23 lines
373 B
C++

#ifndef CONTENTLOADER_HPP
#define CONTENTLOADER_HPP
#include <filesystem>
namespace Loading
{
class Listener;
}
namespace MWWorld
{
struct ContentLoader
{
virtual ~ContentLoader() = default;
virtual void load(const std::filesystem::path& filepath, int& index, Loading::Listener* listener) = 0;
};
} /* namespace MWWorld */
#endif /* CONTENTLOADER_HPP */