X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=blobdiff_plain;f=tools%2Fquake3%2Fq3map2%2Fq3map2.h;h=fd9a346fb94598ba5e0fcf256714c001d78784c5;hp=935d1c7f078baa9ff936670d85510cea5fe584b2;hb=10f758e6dd794f35cb422f7f55b476438634e31b;hpb=e4287c28bb2dafedc81c66e63951d947cfbeb225 diff --git a/tools/quake3/q3map2/q3map2.h b/tools/quake3/q3map2/q3map2.h index 935d1c7f..fd9a346f 100644 --- a/tools/quake3/q3map2/q3map2.h +++ b/tools/quake3/q3map2/q3map2.h @@ -86,7 +86,6 @@ #include - /* ------------------------------------------------------------------------------- port-related hacks @@ -1235,6 +1234,7 @@ typedef struct { int num; qboolean hint; /* true if this portal was created from a hint splitter */ + qboolean sky; /* true if this portal belongs to a sky leaf */ qboolean removed; visPlane_t plane; /* normal pointing into neighbor */ int leaf; /* neighbor */ @@ -1512,6 +1512,9 @@ surfaceInfo_t; /* main.c */ vec_t Random( void ); +char *Q_strncpyz( char *dst, const char *src, size_t len ); +char *Q_strcat( char *dst, size_t dlen, const char *src ); +char *Q_strncat( char *dst, size_t dlen, const char *src, size_t slen ); int BSPInfo( int count, char **fileNames ); int ScaleBSPMain( int argc, char **argv ); int ConvertMain( int argc, char **argv ); @@ -1526,6 +1529,9 @@ void InitPaths( int *argc, char **argv ); int BSPMain( int argc, char **argv ); +/* minimap.c */ +int MiniMapBSPMain( int argc, char **argv ); + /* convert_map.c */ int ConvertBSPToMap( char *bspName ); int ConvertBSPToMap_BP( char *bspName );