1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/components/esm/loadglob.hpp

29 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