mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-19 18:39:55 +00:00
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("FNAM", mName);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef OPENMW_ESM_APPA_H
|
||||
#define OPENMW_ESM_APPA_H
|
||||
|
||||
#include "esmcommon.hpp"
|
||||
#include <string>
|
||||
|
||||
namespace ESM
|
||||
|
@ -14,7 +13,7 @@ class ESMWriter;
|
|||
* Alchemist apparatus
|
||||
*/
|
||||
|
||||
class Apparatus
|
||||
struct Apparatus
|
||||
{
|
||||
public:
|
||||
enum AppaType
|
||||
|
@ -37,7 +36,7 @@ public:
|
|||
std::string mId, mModel, mIcon, mScript, mName;
|
||||
|
||||
void load(ESMReader &esm);
|
||||
void save(ESMWriter &esm) const;
|
||||
void save(ESMWriter &esm);
|
||||
};
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue