mirror of
https://github.com/EyeTrackVR/OpenIris.git
synced 2025-11-04 15:39:42 +08:00
16 lines
364 B
C
16 lines
364 B
C
#pragma once
|
|
#ifndef GLOBALVARS_H
|
|
#define GLOBALVARS_H
|
|
|
|
#include "StateManager.h"
|
|
#include "LEDManager.h"
|
|
#include "cameraHandler.h"
|
|
extern char* MDSNTrackerName;
|
|
extern int STREAM_SERVER_PORT;
|
|
extern int CONTROL_SERVER_PORT;
|
|
|
|
extern OpenIris::LEDManager ledManager;
|
|
extern OpenIris::StateManager stateManager;
|
|
extern OpenIris::CameraHandler cameraHandler;
|
|
|
|
#endif |