12345678910111213141516171819202122232425262728 |
- #pragma once
- #include <string>
- typedef struct {
- bool OptiTrack;
- bool EMFTrack;
- bool SteamVRTrack;
- } ExportSettings;
- typedef struct {
- double length;
- double radius;
- } OptiTrackSettings;
- typedef struct {
- double width;
- double height;
- double depth;
- } EMFTrackSettings;
- typedef struct {
- double length;
- } SteamVRTrackSettings;
- typedef struct {
- std::string identifier;
- } ActionPointSettings;
|