You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/apps/essimporter/importdial.hpp

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