]> icculus.org git repositories - taylor/freespace2.git/blob - include/credits.h
rendering functions mostly done; more complete shader setup
[taylor/freespace2.git] / include / credits.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/MenuUI/Credits.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * C header file for displaying game credits
16  *
17  * $Log$
18  * Revision 1.2  2002/06/09 04:41:12  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:53a Dave
26  * Initial checkin.
27  * 
28  * 1     10/07/98 10:49a Dave
29  * 
30  * 3     8/31/97 6:38p Lawrance
31  * pass in frametime to do_frame loop
32  * 
33  * 2     4/22/97 11:06a Lawrance
34  * credits music playing, credits screen is a separate state
35  *
36  * $NoKeywords: $
37  */
38
39 #ifndef __CREDITS_H__
40 #define __CREDITS_H__
41
42 void credits_init();
43 void credits_do_frame(float frametime);
44 void credits_close();
45
46 #endif /* __CREDITS_H__ */
47