mirror of https://github.com/OpenMW/openmw.git
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.
35 lines
757 B
C++
35 lines
757 B
C++
#ifndef OPENMW_ESM_CREATURESTATE_H
|
|
#define OPENMW_ESM_CREATURESTATE_H
|
|
|
|
#include "objectstate.hpp"
|
|
#include "inventorystate.hpp"
|
|
#include "creaturestats.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
// format 0, saved games only
|
|
|
|
struct CreatureState final : public ObjectState
|
|
{
|
|
InventoryState mInventory;
|
|
CreatureStats mCreatureStats;
|
|
|
|
/// Initialize to default state
|
|
void blank() override;
|
|
|
|
void load (ESMReader &esm) override;
|
|
void save (ESMWriter &esm, bool inInventory = false) const override;
|
|
|
|
CreatureState& asCreatureState() override
|
|
{
|
|
return *this;
|
|
}
|
|
const CreatureState& asCreatureState() const override
|
|
{
|
|
return *this;
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif
|