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.
openmw-tes3mp/components/esm/loadbsgn.hpp

24 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