mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
323 B
C++
26 lines
323 B
C++
10 years ago
|
#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
|