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.
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
|