1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00
OpenMW/components/esm/loadglob.hpp
2012-10-01 00:51:54 +04:00

26 lines
292 B
C++

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