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.
17 lines
373 B
C++
17 lines
373 B
C++
#ifndef OPENMW_ESM_MAPPINGS_H
|
|
#define OPENMW_ESM_MAPPINGS_H
|
|
|
|
#include <string>
|
|
|
|
#include <components/esm/loadarmo.hpp>
|
|
#include <components/esm/loadbody.hpp>
|
|
|
|
namespace ESM
|
|
{
|
|
ESM::BodyPart::MeshPart getMeshPart(ESM::PartReferenceType type);
|
|
std::string getBoneName(ESM::PartReferenceType type);
|
|
std::string getMeshFilter(ESM::PartReferenceType type);
|
|
}
|
|
|
|
#endif
|