mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-12 21:39:26 +00:00
16 lines
197 B
C++
16 lines
197 B
C++
#include "loadstat.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void Static::load(ESMReader &esm)
|
|
{
|
|
model = esm.getHNString("MODL");
|
|
}
|
|
void Static::save(ESMWriter &esm)
|
|
{
|
|
esm.writeHNCString("MODL", model);
|
|
}
|
|
|
|
}
|