123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- #ifndef __EDIT_PUBLIC_H__
- #define __EDIT_PUBLIC_H__
- class idProgram;
- class idInterpreter;
- void RadiantInit( void );
- void RadiantShutdown( void );
- void RadiantRun( void );
- void RadiantPrint( const char *text );
- void RadiantSync( const char *mapName, const idVec3 &viewOrg, const idAngles &viewAngles );
- void LightEditorInit( const idDict *spawnArgs );
- void LightEditorShutdown( void );
- void LightEditorRun( void );
- void SoundEditorInit( const idDict *spawnArgs );
- void SoundEditorShutdown( void );
- void SoundEditorRun( void );
- void AFEditorInit( const idDict *spawnArgs );
- void AFEditorShutdown( void );
- void AFEditorRun( void );
- void ParticleEditorInit( const idDict *spawnArgs );
- void ParticleEditorShutdown( void );
- void ParticleEditorRun( void );
- void PDAEditorInit( const idDict *spawnArgs );
- void PDAEditorShutdown( void );
- void PDAEditorRun( void );
- void ScriptEditorInit( const idDict *spawnArgs );
- void ScriptEditorShutdown( void );
- void ScriptEditorRun( void );
- void DeclBrowserInit( const idDict *spawnArgs );
- void DeclBrowserShutdown( void );
- void DeclBrowserRun( void );
- void DeclBrowserReloadDeclarations( void );
- void GUIEditorInit( void );
- void GUIEditorShutdown( void );
- void GUIEditorRun( void );
- bool GUIEditorHandleMessage( void *msg );
- void DebuggerClientLaunch( void );
- void DebuggerClientInit( const char *cmdline );
- bool DebuggerServerInit( void );
- void DebuggerServerShutdown( void );
- void DebuggerServerPrint( const char *text );
- void DebuggerServerCheckBreakpoint( idInterpreter *interpreter, idProgram *program, int instructionPointer );
- void MaterialEditorInit( void );
- void MaterialEditorRun( void );
- void MaterialEditorShutdown( void );
- void MaterialEditorPrintConsole( const char *msg );
- #endif /* !__EDIT_PUBLIC_H__ */
|