diff options
Diffstat (limited to 'FaceTrackNoIR/FGTypes.h')
-rw-r--r-- | FaceTrackNoIR/FGTypes.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/FaceTrackNoIR/FGTypes.h b/FaceTrackNoIR/FGTypes.h new file mode 100644 index 00000000..0c5244e1 --- /dev/null +++ b/FaceTrackNoIR/FGTypes.h @@ -0,0 +1,28 @@ +/********************************************************************************
+* FaceTrackNoIR This program is a private project of the some enthusiastic *
+* gamers from Holland, who don't like to pay for *
+* head-tracking. *
+* *
+* Copyright (C) 2010 Wim Vriend (Developing) *
+* Ron Hendriks (Researching and Testing) *
+* *
+* Homepage *
+* *
+* Type definitions for the FlightGear server. *
+********************************************************************************/
+#pragma once
+#ifndef INCLUDED_FGTYPES_H
+#define INCLUDED_FGTYPES_H
+
+#include "Windows.h"
+
+//
+// x,y,z position in metres, heading, pitch and roll in degrees...
+//
+#pragma pack(2)
+struct TFlightGearData {
+ double x, y, z, h, p, r;
+ int status;
+};
+
+#endif//INCLUDED_FGTYPES_H
|