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
398 B
C++
30 lines
398 B
C++
15 years ago
|
#ifndef _ESM_CREC_H
|
||
|
#define _ESM_CREC_H
|
||
|
|
||
|
#include "esm_reader.hpp"
|
||
|
|
||
|
namespace ESM {
|
||
|
|
||
|
/* These two are only used in save games. They are not decoded yet.
|
||
|
*/
|
||
|
|
||
|
/// Changes a creature
|
||
|
struct LoadCREC
|
||
|
{
|
||
|
void load(ESMReader &esm)
|
||
|
{
|
||
|
esm.skipRecord();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
/// Changes an item list / container
|
||
|
struct LoadCNTC
|
||
|
{
|
||
|
void load(ESMReader &esm)
|
||
|
{
|
||
|
esm.skipRecord();
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
#endif
|