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

29 lines
332 B
C++
Raw Normal View History

2012-09-23 22:11:08 +04:00
#ifndef OPENMW_ESM_GLOB_H
#define OPENMW_ESM_GLOB_H
#include <string>
#include "defs.hpp"
namespace ESM
{
2012-10-01 00:51:54 +04:00
class ESMReader;
class ESMWriter;
/*
* Global script variables
*/
struct Global
{
std::string mId;
2012-09-17 11:37:50 +04:00
unsigned mValue;
VarType mType;
void load(ESMReader &esm);
void save(ESMWriter &esm);
};
}
#endif