diff options
Diffstat (limited to 'src/content_cao.h')
-rw-r--r-- | src/content_cao.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/content_cao.h b/src/content_cao.h index 412cdff12..e5b23aa35 100644 --- a/src/content_cao.h +++ b/src/content_cao.h @@ -91,7 +91,8 @@ private: int m_animation_speed; int m_animation_blend; bool m_animation_loop; - UNORDERED_MAP<std::string, core::vector2d<v3f> > m_bone_position; // stores position and rotation for each bone name + // stores position and rotation for each bone name + std::unordered_map<std::string, core::vector2d<v3f>> m_bone_position; std::string m_attachment_bone; v3f m_attachment_position; v3f m_attachment_rotation; |