mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 18:29: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);
|
|
}
|
|
|
|
}
|