1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/components/esm/loadbsgn.hpp
Nikolay Kasyanov 7168795ae6 components/esm header refactoring in progress. Refactored:
esm_reader.hpp
loadacti.hpp
loadalch.hpp
loadappa.hpp
loadarmo.hpp
loadbody.hpp
loadbook.hpp
loadbsgn.hpp
loadcell.hpp
loadclas.hpp
loadclot.hpp
loadland.hpp
Updated code style in defs.hpp
2011-04-28 21:55:05 +02:00

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