1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 23:49:55 +00:00
openmw-tes3mp/components/esm/loadglob.hpp
Nikolay Kasyanov 1e5768170f Refactored remaining headers in components/esm except defs.hpp.
Removed obsolete *.cpp files.
2011-04-08 17:58:21 +04:00

22 lines
238 B
C++

#ifndef _ESM_GLOB_H
#define _ESM_GLOB_H
#include "esm_reader.hpp"
#include "defs.hpp"
namespace ESM
{
/*
* Global script variables
*/
struct Global
{
unsigned value;
VarType type;
void load(ESMReader &esm);
};
}
#endif