mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-29 20:11:36 +00:00
26 lines
336 B
C++
26 lines
336 B
C++
#ifndef OPENMW_ESSIMPORT_IMPORTINFO_H
|
|
#define OPENMW_ESSIMPORT_IMPORTINFO_H
|
|
|
|
#include <string>
|
|
|
|
#include <components/esm/refid.hpp>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
struct INFO
|
|
{
|
|
ESM::RefId mInfo;
|
|
std::string mActorRefId;
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|