mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-16 20:46:16 +02:00
18 lines
No EOL
466 B
C++
18 lines
No EOL
466 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_MouseTransformNode_h
|
|
#define hifi_MouseTransformNode_h
|
|
|
|
#include "TransformNode.h"
|
|
|
|
class MouseTransformNode : public TransformNode {
|
|
public:
|
|
Transform getTransform() override;
|
|
};
|
|
|
|
#endif // hifi_MouseTransformNode_h
|