16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 11:19:19 +02:00

headtracking from joystick input

This commit is contained in:
milek7
2020-02-11 00:16:57 +01:00
parent b651752057
commit e8537a16bb
8 changed files with 123 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ http://mozilla.org/MPL/2.0/.
#include "applicationmode.h"
#include "PyInt.h"
#include "network/manager.h"
#include "headtrack.h"
class eu07_application {
const int MAX_NETWORK_PER_FRAME = 1000;
@@ -117,6 +118,7 @@ private:
std::vector<GLFWwindow *> m_windows;
std::optional<network::manager> m_network;
std::optional<headtrack> m_headtrack;
};
extern eu07_application Application;