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
581 B
C++
29 lines
581 B
C++
#ifndef OPENMW_ESM_STATSTATE_H
|
|
#define OPENMW_ESM_STATSTATE_H
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
class ESMWriter;
|
|
|
|
// format 0, saved games only
|
|
|
|
template<typename T>
|
|
struct StatState
|
|
{
|
|
T mBase;
|
|
T mMod; // Note: can either be the modifier, or the modified value.
|
|
// A bit inconsistent, but we can't fix this without breaking compatibility.
|
|
T mCurrent;
|
|
float mDamage;
|
|
float mProgress;
|
|
|
|
StatState();
|
|
|
|
void load (ESMReader &esm);
|
|
void save (ESMWriter &esm) const;
|
|
};
|
|
}
|
|
|
|
#endif
|