Overte C++ Documentation
EntityTransformNode.h
1 //
2 // Created by Sabrina Shanman 9/5/2018
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_EntityTransformNode_h
9 #define hifi_EntityTransformNode_h
10 
11 #include "NestableTransformNode.h"
12 
13 #include "EntityItem.h"
14 
15 class EntityTransformNode : public BaseNestableTransformNode<EntityItem> {
16 public:
17  EntityTransformNode(std::weak_ptr<EntityItem> spatiallyNestable, int jointIndex) : BaseNestableTransformNode(spatiallyNestable, jointIndex) {};
18 };
19 
20 #endif // hifi_EntityTransformNode_h