File: sarsimbegin.h

package info (click to toggle)
searchandrescue 1.5.0-2.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 6,768 kB
  • sloc: ansic: 89,609; cpp: 7,699; makefile: 194; sh: 123
file content (27 lines) | stat: -rw-r--r-- 554 bytes parent folder | download | duplicates (8)
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
/*
	SAR Simulation Starting

	Switches from menus to simulation.
 */

#ifndef SARSIMBEGIN_H
#define SARSIMBEGIN_H

#include "obj.h"
#include "sar.h"

extern int SARSimBeginMission(
	sar_core_struct *core_ptr,
	const char *mission_file
);
extern int SARSimBeginFreeFlight(
	sar_core_struct *core_ptr,
	const char *scene_file,
	const char *player_file,                /* Player aircraft. */
	sar_position_struct *start_pos,
	sar_direction_struct *start_dir,
	const char *weather_preset_name,
	Boolean free_flight_system_time
);

#endif	/* SARSIMBEGIN_H */