blob: f7bf78d0558ac944c7d6a1b04187d8836428b534 (
plain) (
blame)
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
29
30
|
#ifndef __PLT_PARSER__
#define __PLT_PARSER__
/* *************************************
* Includes
* *************************************/
#include "Global_Inc.h"
#include "System.h"
#include "GameStructures.h"
/* *************************************
* Defines
* *************************************/
/* **************************************
* Structs and enums *
* *************************************/
/* *************************************
* Global prototypes
* *************************************/
bool PltParserLoadFile(char * strPath, TYPE_FLIGHT_DATA * ptrFlightData);
/* *************************************
* Global variables
* *************************************/
#endif //__PLT_PARSER__
|