UFO: Alien Invasion
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
cp_auto_mission.h
Go to the documentation of this file.
1 
7 /*
8 Copyright (C) 2002-2020 UFO: Alien Invasion.
9 
10 This program is free software; you can redistribute it and/or
11 modify it under the terms of the GNU General Public License
12 as published by the Free Software Foundation; either version 2
13 of the License, or (at your option) any later version.
14 
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 
19 See the GNU General Public License for more details.
20 
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 */
25 
26 #pragma once
27 
28 struct aircraft_s;
29 struct alienTeamGroup_s;
30 struct campaign_s;
31 struct battleParam_s;
32 struct missionResults_s;
33 struct mission_s;
34 
35 void AM_Go(struct mission_s* mission, struct aircraft_s* aircraft, const struct campaign_s* campaign, const struct battleParam_s* battleParameters, struct missionResults_s* results);
36 
37 void AM_InitStartup(void);
38 void AM_Shutdown(void);
void AM_InitStartup(void)
Init actions for automission-subsystem.
mission definition
Definition: cp_missions.h:85
void AM_Go(struct mission_s *mission, struct aircraft_s *aircraft, const struct campaign_s *campaign, const struct battleParam_s *battleParameters, struct missionResults_s *results)
alien team group definition.
Definition: cp_campaign.h:105
void AM_Shutdown(void)
Closing actions for automission-subsystem.
An aircraft with all it's data.
Definition: cp_aircraft.h:114
Structure with mission info needed to create results summary at menu won.
Definition: cp_missions.h:60