mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2024-11-10 07:11:42 +00:00
25 lines
666 B
C
25 lines
666 B
C
|
|
/*****************************************************************************
|
|
* name: be_aas_file.h
|
|
*
|
|
* desc: AAS
|
|
*
|
|
* $Archive: /source/code/botlib/be_aas_file.h $
|
|
* $Author: Mrelusive $
|
|
* $Revision: 2 $
|
|
* $Modtime: 10/05/99 3:32p $
|
|
* $Date: 10/05/99 3:42p $
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifdef AASINTERN
|
|
//loads the AAS file with the given name
|
|
int AAS_LoadAASFile(char *filename);
|
|
//writes an AAS file with the given name
|
|
qboolean AAS_WriteAASFile(char *filename);
|
|
//dumps the loaded AAS data
|
|
void AAS_DumpAASData(void);
|
|
//print AAS file information
|
|
void AAS_FileInfo(void);
|
|
#endif //AASINTERN
|
|
|