forked from teamnwah/openmw-tes3coop
fixed zini's norices
This commit is contained in:
parent
da20637eea
commit
60f2219450
2 changed files with 3 additions and 4 deletions
|
@ -28,7 +28,7 @@ void Apparatus::load(ESMReader &esm)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Apparatus::save(ESMWriter &esm) const
|
void Apparatus::save(ESMWriter &esm)
|
||||||
{
|
{
|
||||||
esm.writeHNCString("MODL", mModel);
|
esm.writeHNCString("MODL", mModel);
|
||||||
esm.writeHNCString("FNAM", mName);
|
esm.writeHNCString("FNAM", mName);
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#ifndef OPENMW_ESM_APPA_H
|
#ifndef OPENMW_ESM_APPA_H
|
||||||
#define OPENMW_ESM_APPA_H
|
#define OPENMW_ESM_APPA_H
|
||||||
|
|
||||||
#include "esmcommon.hpp"
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace ESM
|
namespace ESM
|
||||||
|
@ -14,7 +13,7 @@ class ESMWriter;
|
||||||
* Alchemist apparatus
|
* Alchemist apparatus
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class Apparatus
|
struct Apparatus
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
enum AppaType
|
enum AppaType
|
||||||
|
@ -37,7 +36,7 @@ public:
|
||||||
std::string mId, mModel, mIcon, mScript, mName;
|
std::string mId, mModel, mIcon, mScript, mName;
|
||||||
|
|
||||||
void load(ESMReader &esm);
|
void load(ESMReader &esm);
|
||||||
void save(ESMWriter &esm) const;
|
void save(ESMWriter &esm);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue