mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
25 lines
438 B
C++
25 lines
438 B
C++
|
#ifndef _ESM_SOUN_H
|
||
|
#define _ESM_SOUN_H
|
||
|
|
||
|
#include "esm_reader.hpp"
|
||
|
//#include "loadspel.hpp"
|
||
|
|
||
|
struct BirthSign
|
||
|
{
|
||
|
std::string name, description, texture;
|
||
|
|
||
|
// List of powers and abilities that come with this birth sign.
|
||
|
//SpellList powers;
|
||
|
|
||
|
void load(ESMReader &esm)
|
||
|
{
|
||
|
name = esm.getHNString("FNAM");
|
||
|
texture = esm.getHNOString("TNAM");
|
||
|
description = esm.getHNOString("DESC");
|
||
|
|
||
|
//powers.load(esm);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#endif
|