overte-HifiExperiments/libraries/shared/src/TransformNode.h

19 lines
455 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_TransformNode_h
#define hifi_TransformNode_h
#include "Transform.h"
class TransformNode {
public:
virtual ~TransformNode() {}
virtual Transform getTransform() = 0;
};
#endif // hifi_TransformNode_h