mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
17 lines
355 B
C++
17 lines
355 B
C++
#ifndef OPENMW_ESM_MAPPINGS_H
|
|
#define OPENMW_ESM_MAPPINGS_H
|
|
|
|
#include <string>
|
|
|
|
#include <components/esm3/loadarmo.hpp>
|
|
#include <components/esm3/loadbody.hpp>
|
|
|
|
namespace ESM
|
|
{
|
|
BodyPart::MeshPart getMeshPart(PartReferenceType type);
|
|
std::string getBoneName(PartReferenceType type);
|
|
std::string getMeshFilter(PartReferenceType type);
|
|
}
|
|
|
|
#endif
|