FS2_Open
Open source remastering of the Freespace 2 engine
trainingmenu.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) Volition, Inc. 1999. All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell
5  * or otherwise commercially exploit the source or things you created based on the
6  * source.
7  *
8 */
9 
10 
11 
12 #ifndef _TRAININGMENU_H
13 #define _TRAININGMENU_H
14 
15 #define TRAINING_MENU_MAX_CHOICES 3 // keep up to date if any more choices added!
16 
17 // these are the colour values of the pixels that form the different training menu regions
18 #define TRAINING_MENU_TRAINING_MISSIONS_MASK 1
19 #define TRAINING_MENU_REPLAY_MISSIONS_MASK 2
20 #define TRAINING_MENU_RETURN_MASK 3
21 
22 // function prototypes
23 //
24 void training_menu_init();
25 void training_menu_close();
26 void training_menu_do_frame(float frametime);
27 
28 #endif
void training_menu_close()
void training_menu_do_frame(float frametime)
void training_menu_init()