mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 12:19:55 +00:00
23 lines
385 B
C++
23 lines
385 B
C++
#ifndef COMPONENTS_ESM_MAGICEFFECTS_H
|
|
#define COMPONENTS_ESM_MAGICEFFECTS_H
|
|
|
|
#include <map>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
class ESMWriter;
|
|
|
|
// format 0, saved games only
|
|
struct MagicEffects
|
|
{
|
|
// <Effect Id, Base value>
|
|
std::map<int, int> mEffects;
|
|
|
|
void load (ESMReader &esm);
|
|
void save (ESMWriter &esm) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|