blob: 40bab9cdfc76bf200a6b2cd2c35a5a4cb2b9a1a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* PARSEC HEADER: ro_obj.h
*/
#ifndef _RO_OBJ_H_
#define _RO_OBJ_H_
// ro_obj.c implements the following functions
// -------------------------------------------
// void R_RenderObject( GenObject *objectp );
// void R_ReCalcAndRenderObject( GenObject *objectp, const Camera camera );
// void R_DrawWorld( const Camera camera );
// void R_DirectObjectRendering( int flags );
#endif // _RO_OBJ_H_
|