mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:19:57 +00:00
29 lines
425 B
C++
29 lines
425 B
C++
#ifndef CSM_WOLRD_METADATA_H
|
|
#define CSM_WOLRD_METADATA_H
|
|
|
|
#include <string>
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
class ESMWriter;
|
|
}
|
|
|
|
namespace CSMWorld
|
|
{
|
|
struct MetaData
|
|
{
|
|
std::string mId;
|
|
|
|
int mFormat;
|
|
std::string mAuthor;
|
|
std::string mDescription;
|
|
|
|
void blank();
|
|
|
|
void load (ESM::ESMReader& esm);
|
|
void save (ESM::ESMWriter& esm) const;
|
|
};
|
|
}
|
|
|
|
#endif
|