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.
36 lines
710 B
C++
36 lines
710 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];
|
|
|
|
virtual void load (ESMReader &esm);
|
|
virtual void save (ESMWriter &esm, bool inInventory = false) const;
|
|
|
|
virtual ~ObjectState();
|
|
};
|
|
}
|
|
|
|
#endif |