You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
332 B
C++
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
|