openmw-tes3coop/components/esm/loadcrec.hpp
2012-09-17 11:37:50 +04:00

44 lines
679 B
C++

#ifndef _ESM_CREC_H
#define _ESM_CREC_H
#include "record.hpp"
// TODO create implementation files and remove this one
#include "esm_reader.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