Overte C++ Documentation
AvatarTransformNode.h
1 //
2 // Created by Sabrina Shanman 2018/09/05
3 // Copyright 2018 High Fidelity, Inc.
4 //
5 // Distributed under the Apache License, Version 2.0.
6 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
7 //
8 #ifndef hifi_AvatarTransformNode_h
9 #define hifi_AvatarTransformNode_h
10 
11 #include "NestableTransformNode.h"
12 
13 #include "Avatar.h"
14 
15 class AvatarTransformNode : public BaseNestableTransformNode<Avatar> {
16 public:
17  AvatarTransformNode(std::weak_ptr<Avatar> spatiallyNestable, int jointIndex) : BaseNestableTransformNode(spatiallyNestable, jointIndex) {};
18 };
19 
20 #endif // hifi_AvatarTransformNode_h