1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/apps/essimporter/importdial.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
282 B
C++
Raw Normal View History

#ifndef OPENMW_ESSIMPORT_IMPORTDIAL_H
#define OPENMW_ESSIMPORT_IMPORTDIAL_H
2023-12-17 14:21:12 +00:00
#include <cstdint>
namespace ESM
{
class ESMReader;
}
namespace ESSImport
{
struct DIAL
{
2023-12-17 13:03:45 +00:00
int32_t mIndex; // Journal index
void load(ESM::ESMReader& esm);
};
}
#endif