1 #ifndef __SCREEN_DEFINITIONS_H
2 #define __SCREEN_DEFINITIONS_H
3 
4 /*
5 	screen_definitions.h
6 
7 	Copyright (C) 1991-2001 and beyond by Bungie Studios, Inc.
8 	and the "Aleph One" developers.
9 
10 	This program is free software; you can redistribute it and/or modify
11 	it under the terms of the GNU General Public License as published by
12 	the Free Software Foundation; either version 3 of the License, or
13 	(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.  See the
18 	GNU General Public License for more details.
19 
20 	This license is contained in the file "COPYING",
21 	which is included with this source code; it is available online at
22 	http://www.gnu.org/licenses/gpl.html
23 
24 	Tuesday, July 11, 1995 5:32:20 PM- rdm created.
25 
26 */
27 
28 /* -------- this contains the ids for the 8 bit picts */
29 /* the 16 bit versions are these ids + 10000 */
30 /* the 32 bit versions are these ids + 20000 */
31 enum {
32 	INTRO_SCREEN_BASE= 1000,
33 	MAIN_MENU_BASE= 1100,
34 	PROLOGUE_SCREEN_BASE= 1200,
35 	EPILOGUE_SCREEN_BASE= 1300,
36 	CREDIT_SCREEN_BASE= 1400,
37 	CHAPTER_SCREEN_BASE= 1500,
38 	COMPUTER_INTERFACE_BASE= 1600,
39 	INTERFACE_PANEL_BASE= 1700,
40 	FINAL_SCREEN_BASE= 1800
41 };
42 
43 #endif
44 
45