#ifndef OPENXR_INPUT_MANAGER_HPP #define OPENXR_INPUT_MANAGER_HPP #include "openxrmanager.hpp" #include "../mwinput/inputmanagerimp.hpp" #include #include #include namespace MWVR { struct OpenXRInputManagerImpl; struct OpenXRInputManager { OpenXRInputManager(osg::ref_ptr XR); ~OpenXRInputManager(); void updateControls(); std::unique_ptr mPrivate; }; } #endif