]> icculus.org git repositories - taylor/freespace2.git/blob - include/barracks.h
fix issue with looping audio streams
[taylor/freespace2.git] / include / barracks.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/Barracks.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * C source file for implementing barracks
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  * 3     2/02/99 11:58a Neilk
26  * added vss revision/log comments
27  *
28  * $NoKeywords: $
29  */
30
31 #ifndef _BARRACKS_H
32 #define _BARRACKS_H
33
34 // initialize the barracks 
35 void barracks_init();
36
37 // do a frame for the barrracks
38 void barracks_do_frame(float frametime);
39
40 // close the barracks
41 void barracks_close();
42
43 #endif // _BARRACKS_H
44