mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
24 lines
282 B
C++
24 lines
282 B
C++
#ifndef OPENMW_ESSIMPORT_IMPORTDIAL_H
|
|
#define OPENMW_ESSIMPORT_IMPORTDIAL_H
|
|
|
|
#include <cstdint>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
struct DIAL
|
|
{
|
|
int32_t mIndex; // Journal index
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|