1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/components/esm/loaddial.hpp
2013-09-24 13:17:28 +02:00

43 lines
652 B
C++

#ifndef OPENMW_ESM_DIAL_H
#define OPENMW_ESM_DIAL_H
#include <string>
#include <vector>
#include "loadinfo.hpp"
namespace ESM
{
class ESMReader;
class ESMWriter;
/*
* Dialogue topic and journal entries. The actual data is contained in
* the INFO records following the DIAL.
*/
struct Dialogue
{
static unsigned int sRecordId;
enum Type
{
Topic = 0,
Voice = 1,
Greeting = 2,
Persuasion = 3,
Journal = 4,
Deleted = -1
};
std::string mId;
signed char mType;
std::vector<DialInfo> mInfo;
void load(ESMReader &esm);
void save(ESMWriter &esm) const;
};
}
#endif