added topic and journal tables

This commit is contained in:
Marc Zinnschlag 2013-10-20 17:13:31 +02:00
parent ebf7732912
commit adf3a41a83
10 changed files with 136 additions and 19 deletions

View file

@ -36,4 +36,9 @@ void Dialogue::save(ESMWriter &esm)
}
}
void Dialogue::blank()
{
mInfo.clear();
}
}

View file

@ -35,6 +35,9 @@ struct Dialogue
void load(ESMReader &esm);
void save(ESMWriter &esm);
void blank();
///< Set record to default state (does not touch the ID and does not change the type).
};
}
#endif