X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=radiant%2Fqe3.h;h=88ff41aa3b035e4a6fde510a2cf8552b22ccf26e;hb=f6faf961e8151ae67bd5d8f2e65b337d61ef0bf9;hp=c702a2346799f42237ff631c5e9ae9778b37ef0b;hpb=9dfae1c9b270ee369c6362903a9205b30751b95f;p=xonotic%2Fnetradiant.git diff --git a/radiant/qe3.h b/radiant/qe3.h index c702a234..88ff41aa 100644 --- a/radiant/qe3.h +++ b/radiant/qe3.h @@ -27,39 +27,38 @@ // // system functions // -void Sys_SetTitle(const char *text, bool modified); +void Sys_SetTitle( const char *text, bool modified ); -void RunBSP(const char *name); +void RunBSP( const char* name ); void QE_InitVFS(); void QE_brushCountChanged(); - void QE_entityCountChanged(); -bool ConfirmModified(const char *title); +bool ConfirmModified( const char* title ); // most of the QE globals are stored in this structure -typedef struct { - /*! - win32: engine full path. - unix: user home full path + engine dir. - */ - CopiedString m_userEnginePath; - /*! - cache for m_userEnginePath + mod subdirectory. - */ - CopiedString m_userGamePath; +typedef struct +{ + /*! + win32: engine full path. + unix: user home full path + engine dir. + */ + CopiedString m_userEnginePath; + /*! + cache for m_userEnginePath + mod subdirectory. + */ + CopiedString m_userGamePath; } QEGlobals_t; extern QEGlobals_t g_qeglobals; class SimpleCounter; - extern SimpleCounter g_brushCount; extern SimpleCounter g_entityCount;