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.
18 lines
267 B
C++
18 lines
267 B
C++
14 years ago
|
#include "loadclas.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
|
||
|
void Class::load(ESMReader &esm)
|
||
|
{
|
||
|
name = esm.getHNString("FNAM");
|
||
|
esm.getHNT(data, "CLDT", 60);
|
||
|
|
||
|
if (data.isPlayable > 1)
|
||
|
esm.fail("Unknown bool value");
|
||
|
|
||
|
description = esm.getHNOString("DESC");
|
||
|
}
|
||
|
|
||
|
}
|