mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-24 15:14:53 +02:00
19 lines
455 B
C++
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
|