1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 06:49:55 +00:00
openmw-tes3mp/components/esm/loadglob.hpp

28 lines
332 B
C++

#ifndef OPENMW_ESM_GLOB_H
#define OPENMW_ESM_GLOB_H
#include <string>
#include "defs.hpp"
namespace ESM
{
class ESMReader;
class ESMWriter;
/*
* Global script variables
*/
struct Global
{
std::string mId;
unsigned mValue;
VarType mType;
void load(ESMReader &esm);
void save(ESMWriter &esm);
};
}
#endif