1 //
2 // Copyright(C) 1993-1996 Id Software, Inc.
3 // Copyright(C) 2005-2014 Simon Howard
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // DESCRIPTION:
16 //  Intermission.
17 //
18 
19 #ifndef __WI_STUFF__
20 #define __WI_STUFF__
21 
22 // haleyjd 08/23/2010: Strife does not have an intermission
23 #if 0
24 //#include "v_video.h"
25 
26 #include "doomdef.h"
27 
28 // States for the intermission
29 
30 typedef enum
31 {
32     NoState = -1,
33     StatCount,
34     ShowNextLoc,
35 } stateenum_t;
36 
37 // Called by main loop, animate the intermission.
38 void WI_Ticker (void);
39 
40 // Called by main loop,
41 // draws the intermission directly into the screen buffer.
42 void WI_Drawer (void);
43 
44 // Setup for an intermission screen.
45 void WI_Start(wbstartstruct_t*	 wbstartstruct);
46 
47 // Shut down the intermission screen
48 void WI_End(void);
49 
50 #endif
51 #endif
52