This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/launch/tools/bsplib.c

21 lines
430 B
C

#include "utils.h"
// FIXME: implement bsplib
void Bsp_PrintLog( const char *pMsg )
{
if( !enable_log ) return;
if( !bsplog ) bsplog = FS_Open( va( "maps/%s.log", gs_filename ), "ab" );
FS_Print( bsplog, pMsg );
}
qboolean PrepareBSPModel( int argc, char **argv )
{
Sys_Break( "\r\rbsplib not implemented. Wait for Xash 0.75\r\r" );
return false;
}
qboolean CompileBSPModel ( void )
{
return false;
}