mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
34 lines
635 B
C++
34 lines
635 B
C++
|
#ifndef OPENMW_ESM_OBJECTSTATE_H
|
||
|
#define OPENMW_ESM_OBJECTSTATE_H
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
#include "cellref.hpp"
|
||
|
#include "locals.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
class ESMReader;
|
||
|
class ESMWriter;
|
||
|
|
||
|
// format 0, saved games only
|
||
|
|
||
|
///< \brief Save state for objects, that do not use custom data
|
||
|
struct ObjectState
|
||
|
{
|
||
|
CellRef mRef;
|
||
|
|
||
|
unsigned char mHasLocals;
|
||
|
Locals mLocals;
|
||
|
unsigned char mEnabled;
|
||
|
int mCount;
|
||
|
ESM::Position mPosition;
|
||
|
float mLocalRotation[3];
|
||
|
|
||
|
void load (ESMReader &esm);
|
||
|
void save (ESMWriter &esm) const;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|