FS2_Open
Open source remastering of the Freespace 2 engine
nebula.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 _NEBULA_H
13 #define _NEBULA_H
14 
15 // mainly only needed by Fred
16 extern int Nebula_pitch;
17 extern int Nebula_bank;
18 extern int Nebula_heading;
19 
20 struct angles;
21 
22 // You shouldn't pass the extension for filename.
23 // PBH = Pitch, Bank, Heading. Pass NULL for default orientation.
24 void nebula_init( const char *filename, int pitch, int bank, int heading );
25 void nebula_init( const char *filename, angles *pbh = /*NULL*/ 0 );
26 void nebula_close();
27 void nebula_render();
28 
29 #endif //_NEBULA_H
int Nebula_pitch
Definition: nebula.cpp:38
int Nebula_bank
Definition: nebula.cpp:39
int Nebula_heading
Definition: nebula.cpp:40
void nebula_render()
Definition: nebula.cpp:165
char * filename
void nebula_init(const char *filename, int pitch, int bank, int heading)
Definition: nebula.cpp:133
void nebula_close()
Definition: nebula.cpp:42