mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
25 lines
335 B
C++
25 lines
335 B
C++
#ifndef OPENMW_ESM_GLOB_H
|
|
#define OPENMW_ESM_GLOB_H
|
|
|
|
#include "record.hpp"
|
|
#include "defs.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
/*
|
|
* Global script variables
|
|
*/
|
|
|
|
struct Global : public Record
|
|
{
|
|
unsigned mValue;
|
|
VarType mType;
|
|
|
|
void load(ESMReader &esm);
|
|
void save(ESMWriter &esm);
|
|
|
|
int getName() { return REC_GLOB; }
|
|
};
|
|
}
|
|
#endif
|