1 /*
2 	SAR Simulation Starting
3 
4 	Switches from menus to simulation.
5  */
6 
7 #ifndef SARSIMBEGIN_H
8 #define SARSIMBEGIN_H
9 
10 #include "obj.h"
11 #include "sar.h"
12 
13 extern int SARSimBeginMission(
14 	sar_core_struct *core_ptr,
15 	const char *mission_file
16 );
17 extern int SARSimBeginFreeFlight(
18 	sar_core_struct *core_ptr,
19 	const char *scene_file,
20 	const char *player_file,                /* Player aircraft. */
21 	sar_position_struct *start_pos,
22 	sar_direction_struct *start_dir,
23 	const char *weather_preset_name,
24 	Boolean free_flight_system_time
25 );
26 
27 #endif	/* SARSIMBEGIN_H */
28