forked from mirror/openmw-tes3mp
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
|