]> icculus.org git repositories - taylor/freespace2.git/blob - include/nebula.h
re-add PXO sources to project files
[taylor/freespace2.git] / include / nebula.h
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
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/Starfield/Nebula.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * Include file for nebula stuff
16  *
17  * $Log$
18  * Revision 1.2  2002/06/09 04:41:14  relnev
19  * added copyright header
20  *
21  * Revision 1.1.1.1  2002/05/03 03:28:12  root
22  * Initial import.
23  *
24  * 
25  * 2     10/07/98 10:54a Dave
26  * Initial checkin.
27  * 
28  * 1     10/07/98 10:51a Dave
29  * 
30  * 4     11/25/97 11:40a Hoffoss
31  * Added support for nebula placement editing.
32  * 
33  * 3     11/24/97 12:04p John
34  * 
35  * 2     11/16/97 2:29p John
36  * added versioning to nebulas; put nebula code into freespace.
37  * 
38  * 1     11/16/97 1:14p John
39  *
40  * $NoKeywords: $
41  */
42
43 #ifndef _NEBULA_H
44 #define _NEBULA_H
45
46 // mainly only needed by Fred
47 extern int Nebula_pitch;
48 extern int Nebula_bank;
49 extern int Nebula_heading;
50
51 // You shouldn't pass the extension for filename.
52 // PBH = Pitch, Bank, Heading.   Pass NULL for default orientation.
53 void nebula_init( const char *filename, int pitch, int bank, int heading );
54 void nebula_init( const char *filename, angles *pbh = NULL );
55 void nebula_close();
56 void nebula_render();
57
58 #endif  //_NEBULA_H
59