mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 17:19:56 +00:00
26 lines
482 B
C++
26 lines
482 B
C++
|
#ifndef OPENXR_INPUT_MANAGER_HPP
|
||
|
#define OPENXR_INPUT_MANAGER_HPP
|
||
|
|
||
|
#include "openxrmanager.hpp"
|
||
|
#include "../mwinput/inputmanagerimp.hpp"
|
||
|
|
||
|
#include <vector>
|
||
|
#include <array>
|
||
|
#include <iostream>
|
||
|
|
||
|
namespace MWVR
|
||
|
{
|
||
|
struct OpenXRInputManagerImpl;
|
||
|
struct OpenXRInputManager
|
||
|
{
|
||
|
OpenXRInputManager(osg::ref_ptr<OpenXRManager> XR);
|
||
|
~OpenXRInputManager();
|
||
|
|
||
|
void updateControls();
|
||
|
|
||
|
std::unique_ptr<OpenXRInputManagerImpl> mPrivate;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|