1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-20 10:53:52 +00:00
openmw/components/esm/loadbsgn.hpp

23 lines
370 B
C++

#ifndef OPENMW_ESM_BSGN_H
#define OPENMW_ESM_BSGN_H
#include <string>
#include "record.hpp"
#include "spelllist.hpp"
namespace ESM
{
struct BirthSign
{
std::string mName, mDescription, mTexture;
// List of powers and abilities that come with this birth sign.
SpellList mPowers;
void load(ESMReader &esm);
void save(ESMWriter &esm);
};
}
#endif