|
From: Bernt H. <bth...@us...> - 2007-02-25 16:10:25
|
Update of /cvsroot/bzflag/bzflag/include In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14489/include Modified Files: Tag: v2_0branch bzfsAPI.h Log Message: Add bzID to the plugin player record and bump the API version number Index: bzfsAPI.h =================================================================== RCS file: /cvsroot/bzflag/bzflag/include/bzfsAPI.h,v retrieving revision 1.90.2.36 retrieving revision 1.90.2.37 diff -w -u -r1.90.2.36 -r1.90.2.37 --- bzfsAPI.h 25 Feb 2007 15:51:46 -0000 1.90.2.36 +++ bzfsAPI.h 25 Feb 2007 16:10:20 -0000 1.90.2.37 @@ -38,7 +38,7 @@ #define BZF_PLUGIN_CALL extern "C" #endif -#define BZ_API_VERSION 15 +#define BZ_API_VERSION 16 #define BZ_GET_PLUGIN_VERSION BZF_PLUGIN_CALL int bz_GetVersion ( void ) { return BZ_API_VERSION;} @@ -1000,6 +1000,7 @@ wins = 0; losses = 0; + bzID = ""; } ~bz_PlayerRecord(){}; @@ -1027,6 +1028,7 @@ bool spawned; bool verified; bool globalUser; + bzApiString bzID; bool admin; bool op; bzAPIStringList groups; |