mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-24 08:23:52 +00:00
26 lines
323 B
C++
26 lines
323 B
C++
|
#ifndef OPENMW_ESSIMPORT_IMPORTJOUR_H
|
||
|
#define OPENMW_ESSIMPORT_IMPORTJOUR_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
struct ESMReader;
|
||
|
}
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
/// Journal
|
||
|
struct JOUR
|
||
|
{
|
||
|
// The entire journal, in HTML
|
||
|
std::string mText;
|
||
|
|
||
|
void load(ESM::ESMReader& esm);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|