mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
15 lines
196 B
C++
15 lines
196 B
C++
#include "loadstat.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void Static::load(ESMReader &esm)
|
|
{
|
|
model = esm.getHNString("MODL");
|
|
}
|
|
void Static::save(ESMWriter &esm)
|
|
{
|
|
esm.writeHNString("MODL", model);
|
|
}
|
|
|
|
}
|