1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 17:19:56 +00:00
openmw-tes3mp/apps/openmw/mwvr/openxrinputmanager.hpp

26 lines
482 B
C++
Raw Normal View History

#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