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.
30 lines
425 B
C++
30 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
|