mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 21:22:59 +02:00
19 lines
No EOL
530 B
C++
19 lines
No EOL
530 B
C++
//
|
|
// Created by Sabrina Shanman 8/14/2018
|
|
// Copyright 2018 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
#ifndef hifi_MyAvatarHeadTransformNode_h
|
|
#define hifi_MyAvatarHeadTransformNode_h
|
|
|
|
#include "TransformNode.h"
|
|
|
|
class MyAvatarHeadTransformNode : public TransformNode {
|
|
public:
|
|
MyAvatarHeadTransformNode() { }
|
|
Transform getTransform() override;
|
|
};
|
|
|
|
#endif // hifi_MyAvatarHeadTransformNode_h
|