mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 00:45:31 +00:00
21 lines
258 B
C++
21 lines
258 B
C++
|
#ifndef OPENMW_ESSIMPORT_IMPORTDIAL_H
|
||
|
#define OPENMW_ESSIMPORT_IMPORTDIAL_H
|
||
|
namespace ESM
|
||
|
{
|
||
|
struct ESMReader;
|
||
|
}
|
||
|
|
||
|
namespace ESSImport
|
||
|
{
|
||
|
|
||
|
struct DIAL
|
||
|
{
|
||
|
int mIndex; // Journal index
|
||
|
|
||
|
void load(ESM::ESMReader& esm);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|