mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 06:55:54 -04:00
fixed zini's norices
This commit is contained in:
parent
da20637eea
commit
60f2219450
@ -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…
x
Reference in New Issue
Block a user