summaryrefslogtreecommitdiffhomepage
path: root/FTNoIR_Protocol_FG/FGTypes.h
blob: 949dc2133246d10562034121786342556146c1f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/********************************************************************************
* FaceTrackNoIR		This program is a private project of the some enthusiastic	*
*					gamers from Holland, who don't like to pay much 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