1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-20 20:53:53 +00:00
openmw/components/esm/loadcrec.hpp

45 lines
690 B
C++
Raw Normal View History

2012-09-23 18:11:08 +00:00
#ifndef OPENMW_ESM_CREC_H
#define OPENMW_ESM_CREC_H
#include "record.hpp"
2012-09-17 07:37:50 +00:00
// TODO create implementation files and remove this one
#include "esmreader.hpp"
namespace ESM {
/* These two are only used in save games. They are not decoded yet.
*/
/// Changes a creature
struct LoadCREC : public Record
{
void load(ESMReader &esm)
{
esm.skipRecord();
}
void save(ESMWriter &esm)
{
}
int getName() { return REC_CREC; }
};
/// Changes an item list / container
struct LoadCNTC : public Record
{
void load(ESMReader &esm)
{
esm.skipRecord();
}
void save(ESMWriter &esm)
{
}
int getName() { return REC_CNTC; }
};
}
#endif