mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
26 lines
368 B
C++
26 lines
368 B
C++
#ifndef OPENMW_ESSIMPORTER_IMPORTER_H
|
|
#define OPENMW_ESSIMPORTER_IMPORTER_H
|
|
|
|
#include <string>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
class Importer
|
|
{
|
|
public:
|
|
Importer(const std::string& essfile, const std::string& outfile);
|
|
|
|
void run();
|
|
|
|
void compare();
|
|
|
|
private:
|
|
std::string mEssFile;
|
|
std::string mOutFile;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|