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