mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-15 15:51:07 +02:00
76f642286e
Added neural network code(turned off by default). Lots of editor and rendering fixes.
19 lines
478 B
C
19 lines
478 B
C
|
|
#ifndef __MAYA_MAIN_H__
|
|
#define __MAYA_MAIN_H__
|
|
|
|
/*
|
|
==============================================================
|
|
|
|
Maya Import
|
|
|
|
==============================================================
|
|
*/
|
|
|
|
|
|
typedef bool ( *exporterDLLEntry_t )( int version, idCommon *common, idSys *sys, idFileSystem *fileSystem );
|
|
typedef const char *( *exporterInterface_t )( const char *ospath, const char *commandline );
|
|
typedef void ( *exporterShutdown_t )( void );
|
|
|
|
#endif /* !__MAYA_MAIN_H__ */
|