1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/apps/openmw/mwrender/bonegroup.hpp
2024-01-26 21:39:33 +00:00

17 lines
264 B
C++

#ifndef GAME_RENDER_BONEGROUP_H
#define GAME_RENDER_BONEGROUP_H
namespace MWRender
{
enum BoneGroup
{
BoneGroup_LowerBody = 0,
BoneGroup_Torso,
BoneGroup_LeftArm,
BoneGroup_RightArm,
Num_BoneGroups
};
}
#endif