You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
338 B
C++
22 lines
338 B
C++
#include "loadclot.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void Clothing::load(ESMReader &esm)
|
|
{
|
|
model = esm.getHNString("MODL");
|
|
name = esm.getHNOString("FNAM");
|
|
esm.getHNT(data, "CTDT", 12);
|
|
|
|
script = esm.getHNOString("SCRI");
|
|
icon = esm.getHNOString("ITEX");
|
|
|
|
parts.load(esm);
|
|
|
|
|
|
enchant = esm.getHNOString("ENAM");
|
|
}
|
|
|
|
}
|