mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-29 16:02:58 +02:00
23 lines
541 B
C++
23 lines
541 B
C++
//
|
|
// InputPlugin.h
|
|
// input-plugins/src/input-plugins
|
|
//
|
|
// Created by Sam Gondelman on 7/13/2015
|
|
// Copyright 2015 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
|
|
//
|
|
#pragma once
|
|
|
|
#include "Plugin.h"
|
|
|
|
class InputPlugin : public Plugin {
|
|
public:
|
|
virtual bool isJointController() const = 0;
|
|
|
|
virtual void pluginFocusOutEvent() = 0;
|
|
|
|
virtual void pluginUpdate(float deltaTime, bool jointsCaptured) = 0;
|
|
};
|
|
|