mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +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'
29 lines
589 B
C++
29 lines
589 B
C++
#ifndef OPENMW_ESSIMPORT_IMPORTQUES_H
|
|
#define OPENMW_ESSIMPORT_IMPORTQUES_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
}
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
/// State for a quest
|
|
/// Presumably this record only exists when Tribunal is installed,
|
|
/// since pre-Tribunal there weren't any quest names in the data files.
|
|
struct QUES
|
|
{
|
|
std::string mName; // NAME, should be assigned from outside as usual
|
|
std::vector<std::string> mInfo; // list of journal entries for the quest
|
|
|
|
void load(ESM::ESMReader& esm);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|