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.
29 lines
629 B
C++
29 lines
629 B
C++
11 years ago
|
#ifndef OPENMW_ESM_INVENTORYSTATE_H
|
||
|
#define OPENMW_ESM_INVENTORYSTATE_H
|
||
|
|
||
|
#include "objectstate.hpp"
|
||
|
#include "lightstate.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
class ESMReader;
|
||
|
class ESMWriter;
|
||
|
|
||
|
// format 0, saved games only
|
||
|
|
||
|
/// \brief State for inventories and containers
|
||
|
struct InventoryState
|
||
|
{
|
||
|
// anything but lights (type, slot)
|
||
|
std::vector<std::pair<ObjectState, std::pair<unsigned int, int> > > mItems;
|
||
|
|
||
|
// lights (slot)
|
||
|
std::vector<std::pair<LightState, int> > mLights;
|
||
|
|
||
|
virtual void load (ESMReader &esm);
|
||
|
virtual void save (ESMWriter &esm) const;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|