mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
25 lines
301 B
C++
25 lines
301 B
C++
|
#ifndef OPENMW_ESSIMPORT_IMPORTINFO_H
|
||
|
#define OPENMW_ESSIMPORT_IMPORTINFO_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
struct ESMReader;
|
||
|
}
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
struct INFO
|
||
|
{
|
||
|
std::string mInfo;
|
||
|
std::string mActorRefId;
|
||
|
|
||
|
void load(ESM::ESMReader& esm);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|