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.
21 lines
303 B
C++
21 lines
303 B
C++
#ifndef _ESM_BSGN_H
|
|
#define _ESM_BSGN_H
|
|
|
|
#include "defs.hpp"
|
|
#include "esm_reader.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
struct BirthSign
|
|
{
|
|
std::string name, description, texture;
|
|
|
|
// List of powers and abilities that come with this birth sign.
|
|
SpellList powers;
|
|
|
|
void load(ESMReader &esm);
|
|
};
|
|
}
|
|
#endif
|