mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
e02bab67ba
warning C4099: 'ESM::ESMReader' : type name first seen using 'class' now seen using 'struct' warning C4099: 'ESM::CellId' : type name first seen using 'struct' now seen using 'class'
21 lines
257 B
C++
21 lines
257 B
C++
#ifndef OPENMW_ESSIMPORT_IMPORTDIAL_H
|
|
#define OPENMW_ESSIMPORT_IMPORTDIAL_H
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
struct DIAL
|
|
{
|
|
int mIndex; // Journal index
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|