1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 18:18:52 +00:00
OpenMW/apps/essimporter/importdial.hpp
2023-12-17 15:21:12 +01:00

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