mirror of
https://github.com/overte-org/overte.git
synced 2025-07-14 15:16:38 +02:00
18 lines
No EOL
422 B
C++
18 lines
No EOL
422 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 Transform getTransform() = 0;
|
|
};
|
|
|
|
#endif // hifi_TransformNode_h
|